SyncteraRubySdk::ExternalAccountsApi
All URIs are relative to https://api.synctera.com/v0
| Method | HTTP request | Description |
|---|---|---|
| add_external_accounts | POST /external_accounts | Add an external account |
| add_vendor_external_accounts | POST /external_accounts/add_vendor_accounts | Add external accounts through a vendor, such as Plaid. |
| create_access_token | POST /external_accounts/access_tokens | Create a permanent access token for an external account |
| create_verification_link_token | POST /external_accounts/link_tokens | Create a link token to verify an external account |
| delete_external_account | DELETE /external_accounts/external_account_id | Delete an external account |
| get_external_account | GET /external_accounts/external_account_id | Get an external account |
| get_external_account_balance | GET /external_accounts/external_account_id/balance | Get external account balances |
| get_external_account_transactions | GET /external_accounts/external_account_id/transactions | List transactions of a given external account |
| list_external_accounts | GET /external_accounts | List external accounts |
| sync_vendor_external_accounts | POST /external_accounts/sync_vendor_accounts | Sync external accounts through a vendor, such as Plaid. |
| update_external_account | PATCH /external_accounts/external_account_id | Patch an external account |
add_external_accounts
add_external_accounts(add_accounts_request, opts)
Add an external account
Add an external account for a customer. The account will be created in an unverified state.
Examples
require 'time'
require 'synctera_ruby_sdk'
# setup authorization
SyncteraRubySdk.configure do |config|
# Configure Bearer authorization (api_key): bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SyncteraRubySdk::ExternalAccountsApi.new
add_accounts_request = SyncteraRubySdk::AddAccountsRequest.new({account_identifiers: SyncteraRubySdk::AddAccountsRequestAccountIdentifiers.new, account_owner_names: ['Jane Smith'], customer_type: SyncteraRubySdk::ExtAccountCustomerType::PERSONAL, routing_identifiers: SyncteraRubySdk::AddAccountsRequestRoutingIdentifiers.new({bank_countries: ['US'], bank_name: 'Chase'}), type: 'CHECKING'}) # AddAccountsRequest |
opts = {
idempotency_key: '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry.
}
begin
# Add an external account
result = api_instance.add_external_accounts(add_accounts_request, opts)
p result
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->add_external_accounts: #{e}"
end
Using the add_external_accounts_with_http_info variant
This returns an Array which contains the response data, status code and headers.
, Integer, Hash)> add_external_accounts_with_http_info(add_accounts_request, opts)
begin
# Add an external account
data, status_code, headers = api_instance.add_external_accounts_with_http_info(add_accounts_request, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ExternalAccount>
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->add_external_accounts_with_http_info: #{e}"
end
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| add_accounts_request | AddAccountsRequest | ||
| idempotency_key | String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry. | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json, application/problem+json
add_vendor_external_accounts
add_vendor_external_accounts(add_vendor_accounts_request, opts)
Add external accounts through a vendor, such as Plaid.
Add external accounts for a customer through an existing access token. The token must be valid, and the information on the accounts returned by the vendor must correspond to the customer. A success response for this route may include failures if an account could not be added, so it's important that the caller checks the response body.
Examples
require 'time'
require 'synctera_ruby_sdk'
# setup authorization
SyncteraRubySdk.configure do |config|
# Configure Bearer authorization (api_key): bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SyncteraRubySdk::ExternalAccountsApi.new
add_vendor_accounts_request = SyncteraRubySdk::AddVendorAccountsRequest.new({customer_type: SyncteraRubySdk::ExtAccountCustomerType::PERSONAL, vendor: SyncteraRubySdk::ExternalAccountVendorValues::PLAID}) # AddVendorAccountsRequest |
opts = {
idempotency_key: '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry.
}
begin
# Add external accounts through a vendor, such as Plaid.
result = api_instance.add_vendor_external_accounts(add_vendor_accounts_request, opts)
p result
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->add_vendor_external_accounts: #{e}"
end
Using the add_vendor_external_accounts_with_http_info variant
This returns an Array which contains the response data, status code and headers.
, Integer, Hash)> add_vendor_external_accounts_with_http_info(add_vendor_accounts_request, opts)
begin
# Add external accounts through a vendor, such as Plaid.
data, status_code, headers = api_instance.add_vendor_external_accounts_with_http_info(add_vendor_accounts_request, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <AddVendorAccountsResponse>
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->add_vendor_external_accounts_with_http_info: #{e}"
end
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| add_vendor_accounts_request | AddVendorAccountsRequest | ||
| idempotency_key | String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry. | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json, application/problem+json
create_access_token
create_access_token(external_account_access_token, opts)
Create a permanent access token for an external account
Examples
require 'time'
require 'synctera_ruby_sdk'
# setup authorization
SyncteraRubySdk.configure do |config|
# Configure Bearer authorization (api_key): bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SyncteraRubySdk::ExternalAccountsApi.new
external_account_access_token = SyncteraRubySdk::ExternalAccountAccessToken.new({vendor_institution_id: 'vendor_institution_id_example', vendor_public_token: 'vendor_public_token_example'}) # ExternalAccountAccessToken |
opts = {
idempotency_key: '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry.
}
begin
# Create a permanent access token for an external account
result = api_instance.create_access_token(external_account_access_token, opts)
p result
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->create_access_token: #{e}"
end
Using the create_access_token_with_http_info variant
This returns an Array which contains the response data, status code and headers.
, Integer, Hash)> create_access_token_with_http_info(external_account_access_token, opts)
begin
# Create a permanent access token for an external account
data, status_code, headers = api_instance.create_access_token_with_http_info(external_account_access_token, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ExternalAccountAccessToken>
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->create_access_token_with_http_info: #{e}"
end
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| external_account_access_token | ExternalAccountAccessToken | ||
| idempotency_key | String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry. | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json, application/problem+json
create_verification_link_token
create_verification_link_token(external_account_link_token, opts)
Create a link token to verify an external account
Examples
require 'time'
require 'synctera_ruby_sdk'
# setup authorization
SyncteraRubySdk.configure do |config|
# Configure Bearer authorization (api_key): bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SyncteraRubySdk::ExternalAccountsApi.new
external_account_link_token = SyncteraRubySdk::ExternalAccountLinkToken.new({client_name: 'client_name_example', country_codes: ['US'], language: 'EN', type: 'DEPOSITORY'}) # ExternalAccountLinkToken |
opts = {
idempotency_key: '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry.
}
begin
# Create a link token to verify an external account
result = api_instance.create_verification_link_token(external_account_link_token, opts)
p result
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->create_verification_link_token: #{e}"
end
Using the create_verification_link_token_with_http_info variant
This returns an Array which contains the response data, status code and headers.
, Integer, Hash)> create_verification_link_token_with_http_info(external_account_link_token, opts)
begin
# Create a link token to verify an external account
data, status_code, headers = api_instance.create_verification_link_token_with_http_info(external_account_link_token, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ExternalAccountLinkToken>
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->create_verification_link_token_with_http_info: #{e}"
end
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| external_account_link_token | ExternalAccountLinkToken | ||
| idempotency_key | String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry. | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json, application/problem+json
delete_external_account
delete_external_account(external_account_id)
Delete an external account
Deletes an external account, given an external account ID. If no accounts left, the access token to the financial institution will be removed
Examples
require 'time'
require 'synctera_ruby_sdk'
# setup authorization
SyncteraRubySdk.configure do |config|
# Configure Bearer authorization (api_key): bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SyncteraRubySdk::ExternalAccountsApi.new
external_account_id = '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | External Account ID
begin
# Delete an external account
result = api_instance.delete_external_account(external_account_id)
p result
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->delete_external_account: #{e}"
end
Using the delete_external_account_with_http_info variant
This returns an Array which contains the response data, status code and headers.
, Integer, Hash)> delete_external_account_with_http_info(external_account_id)
begin
# Delete an external account
data, status_code, headers = api_instance.delete_external_account_with_http_info(external_account_id)
p status_code # => 2xx
p headers # => { ... }
p data # => <DeleteResponse>
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->delete_external_account_with_http_info: #{e}"
end
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| external_account_id | String | External Account ID |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json, application/problem+json
get_external_account
get_external_account(external_account_id)
Get an external account
Returns an external account, given an external account ID.
Examples
require 'time'
require 'synctera_ruby_sdk'
# setup authorization
SyncteraRubySdk.configure do |config|
# Configure Bearer authorization (api_key): bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SyncteraRubySdk::ExternalAccountsApi.new
external_account_id = '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | External Account ID
begin
# Get an external account
result = api_instance.get_external_account(external_account_id)
p result
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->get_external_account: #{e}"
end
Using the get_external_account_with_http_info variant
This returns an Array which contains the response data, status code and headers.
, Integer, Hash)> get_external_account_with_http_info(external_account_id)
begin
# Get an external account
data, status_code, headers = api_instance.get_external_account_with_http_info(external_account_id)
p status_code # => 2xx
p headers # => { ... }
p data # => <ExternalAccount>
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->get_external_account_with_http_info: #{e}"
end
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| external_account_id | String | External Account ID |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json, application/problem+json
get_external_account_balance
get_external_account_balance(external_account_id, opts)
Get external account balances
Given an external account ID, return the account balances in real time. The data returned by this endpoint is always fetched synchronously; it is not cached by Synctera. As a result, response latency is often high.
Examples
require 'time'
require 'synctera_ruby_sdk'
# setup authorization
SyncteraRubySdk.configure do |config|
# Configure Bearer authorization (api_key): bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SyncteraRubySdk::ExternalAccountsApi.new
external_account_id = '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | External Account ID
opts = {
max_age: 600 # Integer | Optional relative age of a balance in seconds. If the balance is older than the requested seconds it will fail. This field is optional for most financial institutions, but required for some, so you should probably send it.
}
begin
# Get external account balances
result = api_instance.get_external_account_balance(external_account_id, opts)
p result
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->get_external_account_balance: #{e}"
end
Using the get_external_account_balance_with_http_info variant
This returns an Array which contains the response data, status code and headers.
, Integer, Hash)> get_external_account_balance_with_http_info(external_account_id, opts)
begin
# Get external account balances
data, status_code, headers = api_instance.get_external_account_balance_with_http_info(external_account_id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ExternalAccountBalance>
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->get_external_account_balance_with_http_info: #{e}"
end
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| external_account_id | String | External Account ID | |
| max_age | Integer | Optional relative age of a balance in seconds. If the balance is older than the requested seconds it will fail. This field is optional for most financial institutions, but required for some, so you should probably send it. | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json, application/problem+json
get_external_account_transactions
get_external_account_transactions(external_account_id, start_date, end_date)
List transactions of a given external account
Returns a list of transactions on from the external account, given an external account ID. Maximum 500 transctions will be returned.
Examples
require 'time'
require 'synctera_ruby_sdk'
# setup authorization
SyncteraRubySdk.configure do |config|
# Configure Bearer authorization (api_key): bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SyncteraRubySdk::ExternalAccountsApi.new
external_account_id = '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | External Account ID
start_date = Date.parse('2013-10-20') # Date | Date range filtering for transactions. Date is inclusive. Date must be in UTC.
end_date = Date.parse('2013-10-20') # Date | Date range filtering for transactions. Date is exclusive. Date must be in UTC.
begin
# List transactions of a given external account
result = api_instance.get_external_account_transactions(external_account_id, start_date, end_date)
p result
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->get_external_account_transactions: #{e}"
end
Using the get_external_account_transactions_with_http_info variant
This returns an Array which contains the response data, status code and headers.
, Integer, Hash)> get_external_account_transactions_with_http_info(external_account_id, start_date, end_date)
begin
# List transactions of a given external account
data, status_code, headers = api_instance.get_external_account_transactions_with_http_info(external_account_id, start_date, end_date)
p status_code # => 2xx
p headers # => { ... }
p data # => <ExternalAccountsTransactionList>
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->get_external_account_transactions_with_http_info: #{e}"
end
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| external_account_id | String | External Account ID | |
| start_date | Date | Date range filtering for transactions. Date is inclusive. Date must be in UTC. | |
| end_date | Date | Date range filtering for transactions. Date is exclusive. Date must be in UTC. |
Return type
ExternalAccountsTransactionList
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json, application/problem+json
list_external_accounts
list_external_accounts(opts)
List external accounts
Returns a list of all external accounts assigned to customers.
Examples
require 'time'
require 'synctera_ruby_sdk'
# setup authorization
SyncteraRubySdk.configure do |config|
# Configure Bearer authorization (api_key): bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SyncteraRubySdk::ExternalAccountsApi.new
opts = {
customer_id: ['7d943c51-e4ff-4e57-9558-08cab6b963c7'], # Array<String> | A list of customer unique identifiers, with a comma separating any values.
business_id: ['7d943c51-e4ff-4e57-9558-08cab6b963c7'], # Array<String> | A list of business unique identifiers, with a comma separating any values.
limit: 100, # Integer |
page_token: 'a8937a0d', # String |
include_history: true # Boolean | If true, include old (inactive) records as well.
}
begin
# List external accounts
result = api_instance.list_external_accounts(opts)
p result
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->list_external_accounts: #{e}"
end
Using the list_external_accounts_with_http_info variant
This returns an Array which contains the response data, status code and headers.
, Integer, Hash)> list_external_accounts_with_http_info(opts)
begin
# List external accounts
data, status_code, headers = api_instance.list_external_accounts_with_http_info(opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ExternalAccountsList>
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->list_external_accounts_with_http_info: #{e}"
end
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| customer_id | Array<String> | A list of customer unique identifiers, with a comma separating any values. | [optional] |
| business_id | Array<String> | A list of business unique identifiers, with a comma separating any values. | [optional] |
| limit | Integer | [optional][default to 100] | |
| page_token | String | [optional] | |
| include_history | Boolean | If true, include old (inactive) records as well. | [optional][default to false] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json, application/problem+json
sync_vendor_external_accounts
sync_vendor_external_accounts(add_vendor_accounts_request, opts)
Sync external accounts through a vendor, such as Plaid.
Sync external accounts for a customer through an existing access token. The token must be valid, and the information on the accounts returned by the vendor must correspond to the customer. A success response for this route may include failures if an account could not be added and deletions if the account is removed by the end user, so it's important that the caller checks the response body.
Examples
require 'time'
require 'synctera_ruby_sdk'
# setup authorization
SyncteraRubySdk.configure do |config|
# Configure Bearer authorization (api_key): bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SyncteraRubySdk::ExternalAccountsApi.new
add_vendor_accounts_request = SyncteraRubySdk::AddVendorAccountsRequest.new({customer_type: SyncteraRubySdk::ExtAccountCustomerType::PERSONAL, vendor: SyncteraRubySdk::ExternalAccountVendorValues::PLAID}) # AddVendorAccountsRequest |
opts = {
idempotency_key: '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry.
}
begin
# Sync external accounts through a vendor, such as Plaid.
result = api_instance.sync_vendor_external_accounts(add_vendor_accounts_request, opts)
p result
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->sync_vendor_external_accounts: #{e}"
end
Using the sync_vendor_external_accounts_with_http_info variant
This returns an Array which contains the response data, status code and headers.
, Integer, Hash)> sync_vendor_external_accounts_with_http_info(add_vendor_accounts_request, opts)
begin
# Sync external accounts through a vendor, such as Plaid.
data, status_code, headers = api_instance.sync_vendor_external_accounts_with_http_info(add_vendor_accounts_request, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <AddVendorAccountsResponse>
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->sync_vendor_external_accounts_with_http_info: #{e}"
end
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| add_vendor_accounts_request | AddVendorAccountsRequest | ||
| idempotency_key | String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry. | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json, application/problem+json
update_external_account
update_external_account(external_account_id, patch_external_account, opts)
Patch an external account
Edits an unverified external account, given an external account ID.
Examples
require 'time'
require 'synctera_ruby_sdk'
# setup authorization
SyncteraRubySdk.configure do |config|
# Configure Bearer authorization (api_key): bearerAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SyncteraRubySdk::ExternalAccountsApi.new
external_account_id = '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | External Account ID
patch_external_account = SyncteraRubySdk::PatchExternalAccount.new # PatchExternalAccount | External account to be updated
opts = {
idempotency_key: '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry.
}
begin
# Patch an external account
result = api_instance.update_external_account(external_account_id, patch_external_account, opts)
p result
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->update_external_account: #{e}"
end
Using the update_external_account_with_http_info variant
This returns an Array which contains the response data, status code and headers.
, Integer, Hash)> update_external_account_with_http_info(external_account_id, patch_external_account, opts)
begin
# Patch an external account
data, status_code, headers = api_instance.update_external_account_with_http_info(external_account_id, patch_external_account, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ExternalAccount>
rescue SyncteraRubySdk::ApiError => e
puts "Error when calling ExternalAccountsApi->update_external_account_with_http_info: #{e}"
end
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| external_account_id | String | External Account ID | |
| patch_external_account | PatchExternalAccount | External account to be updated | |
| idempotency_key | String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry. | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json, application/problem+json