Info: This ns is auto-generated from the Stripe OpenAPI spec.
Info: This ns is auto-generated from the Stripe OpenAPI spec.
(create-account-bank {:keys [account-id body]})Create an external account
HTTP Method: POST Endpoint: /v1/accounts/{account-id}/bank_accounts
Path Parameters:
Example Usage: (create-account-bank {:account-id example-account-id})
Create an external account
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}/bank_accounts
Path Parameters:
- account-id (String): The account-id parameter. (required)
Example Usage:
(create-account-bank {:account-id example-account-id})(create-account-external {:keys [account-id body]})Create an external account
HTTP Method: POST Endpoint: /v1/accounts/{account-id}/external_accounts
Path Parameters:
Example Usage: (create-account-external {:account-id example-account-id})
Create an external account
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}/external_accounts
Path Parameters:
- account-id (String): The account-id parameter. (required)
Example Usage:
(create-account-external {:account-id example-account-id})(create-account-login-links {:keys [account-id body]})Create a login link
HTTP Method: POST Endpoint: /v1/accounts/{account-id}/login_links
Path Parameters:
Example Usage: (create-account-login-links {:account-id example-account-id})
Create a login link
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}/login_links
Path Parameters:
- account-id (String): The account-id parameter. (required)
Example Usage:
(create-account-login-links {:account-id example-account-id})(create-account-people {:keys [account-id body]})Create a person
HTTP Method: POST Endpoint: /v1/accounts/{account-id}/people
Path Parameters:
Example Usage: (create-account-people {:account-id example-account-id})
Create a person
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}/people
Path Parameters:
- account-id (String): The account-id parameter. (required)
Example Usage:
(create-account-people {:account-id example-account-id})(create-account-persons {:keys [account-id body]})Create a person
HTTP Method: POST Endpoint: /v1/accounts/{account-id}/persons
Path Parameters:
Example Usage: (create-account-persons {:account-id example-account-id})
Create a person
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}/persons
Path Parameters:
- account-id (String): The account-id parameter. (required)
Example Usage:
(create-account-persons {:account-id example-account-id})(delete-account {:keys [account-id]})Delete an account
HTTP Method: DELETE Endpoint: /v1/accounts/{account-id}
Path Parameters:
Example Usage: (delete-account {:account-id example-account-id})
Delete an account
HTTP Method: DELETE
Endpoint: /v1/accounts/{account-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
Example Usage:
(delete-account {:account-id example-account-id})(delete-account-bank-id {:keys [account-id bank-account-id]})Delete an external account
HTTP Method: DELETE Endpoint: /v1/accounts/{account-id}/bank_accounts/{bank-account-id}
Path Parameters:
Example Usage: (delete-account-bank-id {:account-id example-account-id :bank-account-id example-bank-account-id})
Delete an external account
HTTP Method: DELETE
Endpoint: /v1/accounts/{account-id}/bank_accounts/{bank-account-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- bank-account-id (String): Unique identifier for the external account to be deleted.
Example Usage:
(delete-account-bank-id {:account-id example-account-id :bank-account-id example-bank-account-id})(delete-account-external-id {:keys [account-id external-account-id]})Delete an external account
HTTP Method: DELETE Endpoint: /v1/accounts/{account-id}/external_accounts/{external-account-id}
Path Parameters:
Example Usage: (delete-account-external-id {:account-id example-account-id :external-account-id example-external-account-id})
Delete an external account
HTTP Method: DELETE
Endpoint: /v1/accounts/{account-id}/external_accounts/{external-account-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- external-account-id (String): Unique identifier for the external account to be deleted.
Example Usage:
(delete-account-external-id {:account-id example-account-id :external-account-id example-external-account-id})(delete-account-people-person {:keys [account-id people-id]})Delete a person
HTTP Method: DELETE Endpoint: /v1/accounts/{account-id}/people/{people-id}
Path Parameters:
Example Usage: (delete-account-people-person {:account-id example-account-id :people-id example-people-id})
Delete a person
HTTP Method: DELETE
Endpoint: /v1/accounts/{account-id}/people/{people-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- people-id (String): The people-id parameter. (required)
Example Usage:
(delete-account-people-person {:account-id example-account-id :people-id example-people-id})(delete-account-persons-person {:keys [account-id person-id]})Delete a person
HTTP Method: DELETE Endpoint: /v1/accounts/{account-id}/persons/{person-id}
Path Parameters:
Example Usage: (delete-account-persons-person {:account-id example-account-id :person-id example-person-id})
Delete a person
HTTP Method: DELETE
Endpoint: /v1/accounts/{account-id}/persons/{person-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- person-id (String): The person-id parameter. (required)
Example Usage:
(delete-account-persons-person {:account-id example-account-id :person-id example-person-id})(list-all {:keys [query-params]})List all connected accounts
HTTP Method: GET Endpoint: /v1/accounts
Query Parameters:
ending_before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with obj_bar, your subsequent call can include ending_before=obj_bar in order to fetch the previous page of the list.starting_after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include starting_after=obj_foo in order to fetch the next page of the list.Example Usage: (list-all {:query-params {:limit 10}})
List all connected accounts
HTTP Method: GET
Endpoint: /v1/accounts
Query Parameters:
- created (Unknown): Only return connected accounts that were created during the given date interval.
- ending-before (String): A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
- expand (Array): Specifies which fields in the response should be expanded.
- limit (Integer): A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
- starting-after (String): A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
Example Usage:
(list-all {:query-params {:limit 10}})(list-all-account-capabilities {:keys [account-id query-params]})List all account capabilities
HTTP Method: GET Endpoint: /v1/accounts/{account-id}/capabilities
Path Parameters:
Query Parameters:
Example Usage: (list-all-account-capabilities {:account-id example-account-id :query-params {:limit 10}})
List all account capabilities
HTTP Method: GET
Endpoint: /v1/accounts/{account-id}/capabilities
Path Parameters:
- account-id (String): The account-id parameter. (required)
Query Parameters:
- expand (Array): Specifies which fields in the response should be expanded.
Example Usage:
(list-all-account-capabilities {:account-id example-account-id :query-params {:limit 10}})(list-all-account-external {:keys [account-id query-params]})List all external accounts
HTTP Method: GET Endpoint: /v1/accounts/{account-id}/external_accounts
Path Parameters:
Query Parameters:
ending_before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with obj_bar, your subsequent call can include ending_before=obj_bar in order to fetch the previous page of the list.starting_after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include starting_after=obj_foo in order to fetch the next page of the list.Example Usage: (list-all-account-external {:account-id example-account-id :query-params {:limit 10}})
List all external accounts
HTTP Method: GET
Endpoint: /v1/accounts/{account-id}/external_accounts
Path Parameters:
- account-id (String): The account-id parameter. (required)
Query Parameters:
- ending-before (String): A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
- expand (Array): Specifies which fields in the response should be expanded.
- limit (Integer): A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
- object (String): Filter external accounts according to a particular object type.
- starting-after (String): A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
Example Usage:
(list-all-account-external {:account-id example-account-id :query-params {:limit 10}})(list-all-account-people {:keys [account-id query-params]})List all persons
HTTP Method: GET Endpoint: /v1/accounts/{account-id}/people
Path Parameters:
Query Parameters:
ending_before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with obj_bar, your subsequent call can include ending_before=obj_bar in order to fetch the previous page of the list.starting_after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include starting_after=obj_foo in order to fetch the next page of the list.Example Usage: (list-all-account-people {:account-id example-account-id :query-params {:limit 10}})
List all persons
HTTP Method: GET
Endpoint: /v1/accounts/{account-id}/people
Path Parameters:
- account-id (String): The account-id parameter. (required)
Query Parameters:
- ending-before (String): A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
- expand (Array): Specifies which fields in the response should be expanded.
- limit (Integer): A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
- relationship (Object): Filters on the list of people returned based on the person's relationship to the account's company.
- starting-after (String): A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
Example Usage:
(list-all-account-people {:account-id example-account-id :query-params {:limit 10}})(list-all-account-persons {:keys [account-id query-params]})List all persons
HTTP Method: GET Endpoint: /v1/accounts/{account-id}/persons
Path Parameters:
Query Parameters:
ending_before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with obj_bar, your subsequent call can include ending_before=obj_bar in order to fetch the previous page of the list.starting_after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include starting_after=obj_foo in order to fetch the next page of the list.Example Usage: (list-all-account-persons {:account-id example-account-id :query-params {:limit 10}})
List all persons
HTTP Method: GET
Endpoint: /v1/accounts/{account-id}/persons
Path Parameters:
- account-id (String): The account-id parameter. (required)
Query Parameters:
- ending-before (String): A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
- expand (Array): Specifies which fields in the response should be expanded.
- limit (Integer): A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
- relationship (Object): Filters on the list of people returned based on the person's relationship to the account's company.
- starting-after (String): A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
Example Usage:
(list-all-account-persons {:account-id example-account-id :query-params {:limit 10}})(post {:keys [body]})No description available.
HTTP Method: POST Endpoint: /v1/accounts
Example Usage: (post {})
No description available.
HTTP Method: POST
Endpoint: /v1/accounts
Example Usage:
(post {})(post-account-bank-id {:keys [account-id bank-account-id body]})No description available.
HTTP Method: POST Endpoint: /v1/accounts/{account-id}/bank_accounts/{bank-account-id}
Path Parameters:
Example Usage: (post-account-bank-id {:account-id example-account-id :bank-account-id example-bank-account-id})
No description available.
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}/bank_accounts/{bank-account-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- bank-account-id (String): The bank-account-id parameter. (required)
Example Usage:
(post-account-bank-id {:account-id example-account-id :bank-account-id example-bank-account-id})(post-account-external-id {:keys [account-id external-account-id body]})No description available.
HTTP Method: POST Endpoint: /v1/accounts/{account-id}/external_accounts/{external-account-id}
Path Parameters:
Example Usage: (post-account-external-id {:account-id example-account-id :external-account-id example-external-account-id})
No description available.
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}/external_accounts/{external-account-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- external-account-id (String): The external-account-id parameter. (required)
Example Usage:
(post-account-external-id {:account-id example-account-id :external-account-id example-external-account-id})(post-account-reject {:keys [account-id body]})Reject an account
HTTP Method: POST Endpoint: /v1/accounts/{account-id}/reject
Path Parameters:
Example Usage: (post-account-reject {:account-id example-account-id})
Reject an account
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}/reject
Path Parameters:
- account-id (String): The account-id parameter. (required)
Example Usage:
(post-account-reject {:account-id example-account-id})(retrieve-account {:keys [account-id query-params]})Retrieve account
HTTP Method: GET Endpoint: /v1/accounts/{account-id}
Path Parameters:
Query Parameters:
Example Usage: (retrieve-account {:account-id example-account-id :query-params {:limit 10}})
Retrieve account
HTTP Method: GET
Endpoint: /v1/accounts/{account-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
Query Parameters:
- expand (Array): Specifies which fields in the response should be expanded.
Example Usage:
(retrieve-account {:account-id example-account-id :query-params {:limit 10}})(retrieve-account-bank-id {:keys [account-id bank-account-id query-params]})Retrieve an external account
HTTP Method: GET Endpoint: /v1/accounts/{account-id}/bank_accounts/{bank-account-id}
Path Parameters:
Query Parameters:
Example Usage: (retrieve-account-bank-id {:account-id example-account-id :bank-account-id example-bank-account-id :query-params {:limit 10}})
Retrieve an external account
HTTP Method: GET
Endpoint: /v1/accounts/{account-id}/bank_accounts/{bank-account-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- bank-account-id (String): Unique identifier for the external account to be retrieved.
Query Parameters:
- expand (Array): Specifies which fields in the response should be expanded.
Example Usage:
(retrieve-account-bank-id {:account-id example-account-id :bank-account-id example-bank-account-id :query-params {:limit 10}})(retrieve-account-capabilities-capability {:keys [account-id capabilitie-id
query-params]})Retrieve an Account Capability
HTTP Method: GET Endpoint: /v1/accounts/{account-id}/capabilities/{capabilitie-id}
Path Parameters:
Query Parameters:
Example Usage: (retrieve-account-capabilities-capability {:account-id example-account-id :capabilitie-id example-capabilitie-id :query-params {:limit 10}})
Retrieve an Account Capability
HTTP Method: GET
Endpoint: /v1/accounts/{account-id}/capabilities/{capabilitie-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- capabilitie-id (String): The capabilitie-id parameter. (required)
Query Parameters:
- expand (Array): Specifies which fields in the response should be expanded.
Example Usage:
(retrieve-account-capabilities-capability {:account-id example-account-id :capabilitie-id example-capabilitie-id :query-params {:limit 10}})(retrieve-account-external-id {:keys [account-id external-account-id
query-params]})Retrieve an external account
HTTP Method: GET Endpoint: /v1/accounts/{account-id}/external_accounts/{external-account-id}
Path Parameters:
Query Parameters:
Example Usage: (retrieve-account-external-id {:account-id example-account-id :external-account-id example-external-account-id :query-params {:limit 10}})
Retrieve an external account
HTTP Method: GET
Endpoint: /v1/accounts/{account-id}/external_accounts/{external-account-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- external-account-id (String): Unique identifier for the external account to be retrieved.
Query Parameters:
- expand (Array): Specifies which fields in the response should be expanded.
Example Usage:
(retrieve-account-external-id {:account-id example-account-id :external-account-id example-external-account-id :query-params {:limit 10}})(retrieve-account-people-person {:keys [account-id people-id query-params]})Retrieve a person
HTTP Method: GET Endpoint: /v1/accounts/{account-id}/people/{people-id}
Path Parameters:
Query Parameters:
Example Usage: (retrieve-account-people-person {:account-id example-account-id :people-id example-people-id :query-params {:limit 10}})
Retrieve a person
HTTP Method: GET
Endpoint: /v1/accounts/{account-id}/people/{people-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- people-id (String): The people-id parameter. (required)
Query Parameters:
- expand (Array): Specifies which fields in the response should be expanded.
Example Usage:
(retrieve-account-people-person {:account-id example-account-id :people-id example-people-id :query-params {:limit 10}})(retrieve-account-persons-person {:keys [account-id person-id query-params]})Retrieve a person
HTTP Method: GET Endpoint: /v1/accounts/{account-id}/persons/{person-id}
Path Parameters:
Query Parameters:
Example Usage: (retrieve-account-persons-person {:account-id example-account-id :person-id example-person-id :query-params {:limit 10}})
Retrieve a person
HTTP Method: GET
Endpoint: /v1/accounts/{account-id}/persons/{person-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- person-id (String): The person-id parameter. (required)
Query Parameters:
- expand (Array): Specifies which fields in the response should be expanded.
Example Usage:
(retrieve-account-persons-person {:account-id example-account-id :person-id example-person-id :query-params {:limit 10}})(update-account {:keys [account-id body]})Update an account
HTTP Method: POST Endpoint: /v1/accounts/{account-id}
Path Parameters:
Example Usage: (update-account {:account-id example-account-id})
Update an account
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
Example Usage:
(update-account {:account-id example-account-id})(update-account-capabilities-capability {:keys [account-id capabilitie-id
body]})Update an Account Capability
HTTP Method: POST Endpoint: /v1/accounts/{account-id}/capabilities/{capabilitie-id}
Path Parameters:
Example Usage: (update-account-capabilities-capability {:account-id example-account-id :capabilitie-id example-capabilitie-id})
Update an Account Capability
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}/capabilities/{capabilitie-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- capabilitie-id (String): The capabilitie-id parameter. (required)
Example Usage:
(update-account-capabilities-capability {:account-id example-account-id :capabilitie-id example-capabilitie-id})(update-account-people-person {:keys [account-id people-id body]})Update a person
HTTP Method: POST Endpoint: /v1/accounts/{account-id}/people/{people-id}
Path Parameters:
Example Usage: (update-account-people-person {:account-id example-account-id :people-id example-people-id})
Update a person
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}/people/{people-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- people-id (String): The people-id parameter. (required)
Example Usage:
(update-account-people-person {:account-id example-account-id :people-id example-people-id})(update-account-persons-person {:keys [account-id person-id body]})Update a person
HTTP Method: POST Endpoint: /v1/accounts/{account-id}/persons/{person-id}
Path Parameters:
Example Usage: (update-account-persons-person {:account-id example-account-id :person-id example-person-id})
Update a person
HTTP Method: POST
Endpoint: /v1/accounts/{account-id}/persons/{person-id}
Path Parameters:
- account-id (String): The account-id parameter. (required)
- person-id (String): The person-id parameter. (required)
Example Usage:
(update-account-persons-person {:account-id example-account-id :person-id example-person-id})cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |