Account Information

clock 6-minute read calender 1.0.0 | updated Oct. 07, 2025

Sleek and accurate search for accounts and transactions

What you can doEndpoint
Search for accountsget /commercial/accounts/v1/list
Retrieve account detailsget /commercial/accounts/v1/{accountId}
What you can doEndpoint
Search prior day account transactionsget /commercial/accounts/v1/{accountId}/transactions/previous
Search current day account transactionsget /commercial/accounts/v1/{accountId}/transactions/current

get /commercial/accounts/v1/list

Retrieve a list of commercial payment accounts.

A successful response returns an array of accounts for authorized commercial clients. In the account details, an accountId is returned. This identifier is required to retrieve account details or to search for current or past day transactions.

QUERYTYPEDESCRIPTION
limitoptionalintegerRestrict the amount of data you receive. The limit can be an integer from 1 to 100. If the limit is not specified, a default limit of 50 will be used.
pageKeyoptionalintegerA secure and flexible pagination capability uses a unique identifier to navigate or retrieve specific pages. If left blank, the full page range is returned.
HEADERTYPEDESCRIPTION
AcceptrequiredstringPreferred syntax for content type. This content type should be application/json.
Accept-CharsetrequiredstringThe supported character set for the content. UTF-8 contains the accepted Unicode character list for standard English and Latin characters.
User-AgentrequiredstringIdentifies the web browser and/or cURL command line used in the HTTP request. We collect this data to see which products use our API data services, helpful for troubleshooting and compatibility.
x-fapi-interaction-idrequiredstringFapiInteractionId

Request example

curl --location: "https://partner-api-qv.key.com/commercial/accounts/v1/list?limit=50"
--header "Accept: application/json"
--header "Accept-Charset: UTF-8'
--header "User-Agent: Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0'
--header "x-fapi-interaction-id: c770aef3-6784-41f7-8e0e-ff5f97bddb3a" 
--header "Bearer: testZcKJDWnwDWmmf9qah6PJvPy8"
NAMETYPEDESCRIPTION
AccountsobjectAccounts

Response example (200)

copylink
{
  "page": {
    "nextPageKey": "2",
    "previousPageKey": "1",
    "totalElements": 3
  },
  "links": {
    "next": {
      "href": "https://api.fi.com/fdx/v4/accounts/12345"
    },
    "prev": {
      "href": "https://api.fi.com/fdx/v4/accounts/12345"
    }
  },
  "accounts": [
    {
      "accountCategory": "COMMERCIAL_ACCOUNT",
      "accountId": "string",
      "accountNumberDisplay": "string"
    }
  ]
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (400)

copylink
{
  "code": "401",
  "message": "Invalid input",
  "debugMessage": "Required header 'x-fapi-interaction-id' is not valid."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (401)

copylink
{
  "code": "603",
  "message": "Authentication failed",
  "debugMessage": "Please update the request and try again."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (403)

copylink
{
  "code": "403",
  "message": "Forbidden",
  "debugMessage": "Please update the request and try again."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (404)

copylink
{
  "code": "1107",
  "message": "Data not found for request parameters",
  "debugMessage": "Please adjust your search criteria and try again."
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (406)

copylink
{
  "code": "1203",
  "message": "Content Type not supported",
  "debugMessage": "Acceptable representations: [application/json, application/*+json]."		
}

get /commercial/accounts/v1/{accountId}

Get full details about the account identified with the accountId parameter. To include account balance information like opening and closing ledger amounts, be sure to specify the balanceAsOf date in the request.

PATHTYPEDESCRIPTION
accountIdrequiredstringAn unique identification number generated from the /commercial/accounts/v1/list endpoint.
QUERYTYPEDESCRIPTION
balanceAsOfoptionalstringA query option to return historical balance information from a certain date. Balance information includes opening and closed ledger balances, opening and closing available balances, and commercial balances. The date must be within 180 days of the current date. If a date is not provided, historical balance information is not returned. Format: YYYY-MM-DD
HEADERTYPEDESCRIPTION
AcceptrequiredstringPreferred syntax for content type. This content type should be application/json.
Accept-CharsetrequiredstringThe supported character set for the content. UTF-8 contains the accepted Unicode character list for standard English and Latin characters.
User-AgentrequiredstringIdentifies the web browser and/or cURL command line used in the HTTP request. We collect this data to see which products use our API data services, helpful for troubleshooting and compatibility.
x-fapi-interaction-idrequiredstringFapiInteractionId

Request example

curl --location: "https://partner-api-qv.key.com/commercial/accounts/v1/17e13f78-20c7-4ce6-ad4e-5afff48c8834?balanceAsOf=2025-08-21"
--header "Accept: application/json"
--header "Accept-Charset: UTF-8'
--header "User-Agent: Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0'
--header "x-fapi-interaction-id: c770aef3-6784-41f7-8e0e-ff5f97bddb3a" 
--header "Bearer: testZcKJDWnwDWmmf9qah6PJvPy8"
NAMETYPEDESCRIPTION
AccountWithDetailsobjectAccountWithDetails

Response example (200)

copylink
{
  "accountId": "17e13f78-20c7-4ce6-ad4e-5afff48c8834",
  "accountNumberDisplay": "X2595",
  "accountCategory": "COMMERCIAL_ACCOUNT",
  "currentAvailableBalance": 1000.1,
  "currentLedgerBalance": 3000.2,
  "openingLedgerBalance": 123.45,
  "closingLedgerBalance": 25000.99,
  "openingAvailableBalance": 15000.5,
  "closingAvailableBalance": 25000.36,
  "balanceAsOf": "2025-08-21",
  "commercialBalances": [
    {
      "commercialCode": {
        "type": "BAI",
        "code": "010",
        "memo": "Opening Ledger Balance"
      },
      "amount": 123.45
    },
    {
      "commercialCode": {
        "type": "BAI",
        "code": "015",
        "memo": "Closing Ledger Balance"
      },
      "amount": 25000.99
    },
    {
      "commercialCode": {
        "type": "BAI",
        "code": "040",
        "memo": "Opening Available Balance"
      },
      "amount": 15000.5
    },
    {
      "commercialCode": {
        "type": "BAI",
        "code": "045",
        "memo": "Closing Available Balance"
      },
      "amount": 25000.36
    }
  ]
}

It is possible to have a success message with a HTTP 206 code that indicates a partial success. For example, only a portion of the records are returned from the full set or the record is returning partial data. This can occur if the balanceAsOf date requested is a weekend date or a non-business day. Or, this can occur in an unlikely event that a dependent system or provider is down or has reduced performance. 

NAMETYPEDESCRIPTION
AccountWithDetailsobjectAccountWithDetails

Response example (206)

copylink
{
  "accountCategory": "COMMERCIAL_ACCOUNT",
  "accountId": "string",
  "accountNumberDisplay": "string",
  "balanceAsOf": "2019-08-24",
  "openingLedgerBalance": 0,
  "closingLedgerBalance": 0,
  "currentLedgerBalance": 0,
  "openingAvailableBalance": 0,
  "currentAvailableBalance": 0,
  "closingAvailableBalance": 0,
  "commercialBalances": [
    {
      "commercialCode": {
        "type": "BAI",
        "code": "string"
      },
      "amount": 0,
      "memo": "string"
    }
  ]
}	
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (400)

copylink
{
  "code": "401",
  "message": "Invalid input",
  "debugMessage": "Required header 'x-fapi-interaction-id' is not valid."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (401)

copylink
{
  "code": "603",
  "message": "Unauthorized request",
  "debugMessage": "Please update the request and try again."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (403)

copylink
{
  "code": "403",
  "message": "Forbidden",
  "debugMessage": "Please update the request and try again."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (406)

copylink
{
  "code": "1203",
  "message": "Content Type not supported",
  "debugMessage": "Acceptable representations: [application/json, application/*+json]."
}

get /commercial/accounts/v1/{accountId}/transactions/previous

Search for past transactions by accountId and date range, startDate and endDate. Do not specify a date range to search yesterday's transactions. If you enter a date range, remember the following:

  • If you enter a start date, you must also provide an end date.
  • You can look up to 180 days in the past (about 6 months).
  • The end date cannot be the current date.
  • To search for a specific date, the start date and the end date must be the same date. For example, "/commercial/accounts/v1/accountId12345/transactions/previous?startDate=2025-02-15&endDate=2025-02-15".
PATHTYPEDESCRIPTION
accountIdrequiredstringAn unique identification number generated from the /commercial/accounts/v1/list endpoint.
QUERYTYPEDESCRIPTION
startDateoptionalstringStart date to search a past date range. Leave blank to search prior day transactions. If you enter a date, you must also specify an end date. Start date can not be older than 180 days from today. Format: YYYY-MM-DD
endDateoptionalstringEnd date for a date range. Leave blank to search prior day transactions. If you enter a date, you must also specify a start date. The end date cannot be today's date. To search for a single day's transactions, make the end date the same as the start date. Format: YYYY-MM-DD
limitoptionalintegerRestrict the amount of data you receive. The limit can be an integer from 1 to 500. If the limit is not specified, a default limit of 100 will be used.
pageKeyoptionalintegerA secure and flexible pagination capability uses a unique identifier to navigate or retrieve specific pages. If left blank, the full page range is returned.
HEADERTYPEDESCRIPTION
AcceptrequiredstringPreferred syntax for content type. This content type should be application/json.
Accept-CharsetrequiredstringThe supported character set for the content. UTF-8 contains the accepted Unicode character list for standard English and Latin characters.
User-AgentrequiredstringIdentifies the web browser and/or cURL command line used in the HTTP request. We collect this data to see which products use our API data services, helpful for troubleshooting and compatibility.
x-fapi-interaction-idrequiredstringFapiInteractionId

Request example

curl --location: 'https://partner-api-qv.key.com/commercial/accounts/v1/FintechCo-25-7120aez/transactions/previous?startDate=2025-02-15&endDate=2025-02-28&limit=15&pageKey=2'
--header 'Accept: application/json'
--header 'Accept-Charset: UTF-8'
--header 'User-Agent: Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0'
--header 'x-fapi-interaction-id: c770aef3-6784-41f7-8e0e-ff5f97bddb3a' 
--header 'Bearer: testZcKJDWnwDWmmf9qah6PJvPy8'
NAMETYPEDESCRIPTION
transactionsarrayTransactions

Response example (200)

copylink
{
  "page": {
    "nextPageKey": "2",
    "previousPageKey": "1",
    "totalElements": 3
  },
  "links": {
    "next": {
      "href": "https://api.fi.com/fdx/v4/accounts/12345"
    },
    "prev": {
      "href": "https://api.fi.com/fdx/v4/accounts/12345"
    }
  },
  "transactions": [
    {
      "accountCategory": "COMMERCIAL_ACCOUNT",
      "accountId": "string",
      "transactionId": "string",
      "postedTimestamp": "2021-07-15T14:46:41.375Z",
      "transactionTimestamp": "2021-07-15T14:46:41.375Z",
      "description": "string",
      "debitCreditMemo": "CREDIT",
      "status": "AUTHORIZATION",
      "amount": 0,
      "lineItem": [
        {
          "description": "CHECK",
          "amount": 0,
          "checkNumber": 9876
        }
      ],
      "fiAttributes": [
        {
          "name": "transactionType",
          "value": "CHECK"
        }
      ],
      "commercialCode": {
        "type": "BAI",
        "code": "string"
      }
    }
  ]
}

It is possible to have a success message with a HTTP 206 code that indicates a partial success. For example, only a portion of the records are returned from the full set or the record is returning partial data. This can occur if the daily batch hasn’t processed one or more of the dates being searched. Or, in an unlikely event that a dependent system or provider is down or has reduced performance. In either case, review the Content-Range response header for an explanation to the range of data provided.

NAMETYPEDESCRIPTION
AccountWithDetailsobjectAccountWithDetails

Response example (206)

copylink
{
  "page": {
    "nextPageKey": "2",
    "previousPageKey": "1"
  },
  "links": {
    "next": {
      "href": "https://api.fi.com/fdx/v4/accounts/12345"
    },
    "prev": {
      "href": "https://api.fi.com/fdx/v4/accounts/12345"
    }
  },
  "transactions": [
    {
      "accountCategory": "COMMERCIAL_ACCOUNT",
      "accountId": "string",
      "transactionId": "string",
      "postedTimestamp": "2021-07-15T14:46:41.375Z",
      "lineItem": [],
      "fiAttributes": [
        {
          "name": "transactionType",
          "value": "CHECK"
        }
      ]
    }
  ]
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (400)

copylink
{
  "code": "401",
  "message": "Invalid input",
  "debugMessage": "Required header 'x-fapi-interaction-id' is not valid."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (401)

copylink
{
  "code": "603",
  "message": "Authentication failed",
  "debugMessage": "Please update the request and try again."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (403)

copylink
{
  "code": "403",
  "message": "Forbidden",
  "debugMessage": "Please update the request and try again."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (404)

copylink
{
  "code": "1107",
  "message": "Data not found for request parameters",
  "debugMessage": "Please adjust your search criteria and try again."
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (406)

copylink
{
  "code": "1203",
  "message": "Content Type not supported",
  "debugMessage": "Acceptable representations: [application/json, application/*+json]."			
}

get /commercial/v1/accounts/{accountId}/transactions/current

Search for current day transaction by accountId. Use pagination controls to limit or filter the data returned.

PATHTYPEDESCRIPTION
accountIdrequiredstringAn unique identification number generated from the /commercial/accounts/v1/list endpoint.
QUERYTYPEDESCRIPTION
limitintegerRestrict the amount of data you receive. The limit can be an integer from 1 to 500. If the limit is not specified, a default limit of 100 will be used.
pageKeyintegerA secure and flexible pagination capability uses a unique identifier to navigate or retrieve specific pages. If left blank, the full page range is returned.
HEADERTYPEDESCRIPTION
AcceptrequiredstringPreferred syntax for content type. This content type should be application/json.
Accept-CharsetrequiredstringThe supported character set for the content. UTF-8 contains the accepted Unicode character list for standard English and Latin characters.
User-AgentrequiredstringIdentifies the web browser and/or cURL command line used in the HTTP request. We collect this data to see which products use our API data services, helpful for troubleshooting and compatibility.
x-fapi-interaction-idrequiredstringFapiInteractionId

Request example

curl --location: 'https://partner-api-qv.key.com/commercial/v1/accounts/FintechCo-25-7120aez/transactions/current?limit=15&pageKey=3'
--header 'Accept: application/json'
--header 'Accept-Charset: UTF-8'
--header 'User-Agent: Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36 Edg/136.0.0.0'
--header 'x-fapi-interaction-id: c770aef3-6784-41f7-8e0e-ff5f97bddb3a' 
--header 'Bearer: testZcKJDWnwDWmmf9qah6PJvPy8'
NAMETYPEDESCRIPTION
transactionsarrayTransactions

Response example (200)

copylink
{
  "page": {
    "nextPageKey": "2",
    "previousPageKey": "1",
    "totalElements": 3
  },
  "links": {
    "next": {
      "href": "https://api.fi.com/fdx/v4/accounts/12345"
    },
    "prev": {
      "href": "https://api.fi.com/fdx/v4/accounts/12345"
    }
  },
  "transactions": [
    {
      "accountCategory": "COMMERCIAL_ACCOUNT",
      "accountId": "string",
      "transactionId": "string",
      "postedTimestamp": "2021-07-15T14:46:41.375Z",
      "transactionTimestamp": "2021-07-15T14:46:41.375Z",
      "description": "string",
      "debitCreditMemo": "CREDIT",
      "status": "AUTHORIZATION",
      "amount": 0,
      "lineItem": [
        {
          "description": "CHECK",
          "amount": 0,
          "checkNumber": 9876
        }
      ],
      "fiAttributes": [
        {
          "name": "transactionType",
          "value": "CHECK"
        }
      ],
      "commercialCode": {
        "type": "BAI",
        "code": "string"
      }
    }
  ]
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (400)

copylink
{
  "code": "401",
  "message": "Invalid input",
  "debugMessage": "Required header 'x-fapi-interaction-id' is not valid."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (401)

copylink
{
  "code": "603",
  "message": "Authentication failed",
  "debugMessage": "Please update the request and try again."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (403)

copylink
{
  "code": "403",
  "message": "Forbidden",
  "debugMessage": "Please update the request and try again."			
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (404)

copylink
{
  "code": "1107",
  "message": "Data not found for request parameters",
  "debugMessage": "Please adjust your search criteria and try again."
}
NAMETYPEDESCRIPTION
ErrorobjectError

Response example (406)

copylink
{
  "code": "1203",
  "message": "Content Type not supported",
  "debugMessage": "Acceptable representations: [application/json, application/*+json]."			
}
NAMETYPEDESCRIPTION
AccountallOfAccountDescriptor
NAMETYPEDESCRIPTION
PaginatedArrayallOfPaginatedArray
AccountsarrayAccount
NAMETYPEDESCRIPTION
AccountWithDetailsoneOfCommercialAccount
NAMETYPEDESCRIPTION
AccountCategorystringThe account type for the transaction. Valid values: COMMERCIAL_ACCOUNT
NAMETYPEDESCRIPTION
accountCategoryObjectAccountCategory
accountIdObjectIdentifier
accountNumberDisplaystringThe account display number suitable for the interface provider.
NAMETYPEDESCRIPTION
accountCategoryobjectCommercialAccount
NAMETYPEDESCRIPTION
CharsetsstringThe supported character set for the content. UTF-8 contains the accepted Unicode character list for standard English and Latin characters.
NAMETYPEDESCRIPTION
Commercial AccountallOfAccount
NAMETYPEDESCRIPTION
commercialCodeObjectCommercialCode
amountnumberThe treasury management balance amount
memostringMemo field for the treasury management balance amount
NAMETYPEDESCRIPTION
typeobjectTreasuryManagementType
codestringThe code of the Treasury Management defined field
NAMETYPEDESCRIPTION
CommercialTransactionallOfTransaction
NAMETYPEDESCRIPTION
ContentTypesstringTypes of supported document formats.
NAMETYPEDESCRIPTION
DateStringstringDate format based on ISO 8601 standards. Format: YYYY-MM-DD
NAMETYPEDESCRIPTION
codestringCode indicates the type of error that occurred.
messagestringInformation associated with the code that helps you diagnose the error.
debugMessagestringMessage used to debug the root cause of the error.
NAMETYPEDESCRIPTION
FapiInteractionIdstringUniversally unique identifier for this interaction, used across all API requests and responses
NAMETYPEDESCRIPTION
namestringName of attribute
valuestringValue of attribute
NAMETYPEDESCRIPTION
hrefstringURL address to invoke the action on the resource.
NAMETYPEDESCRIPTION
HateoasLinksarrayHateoasLink
NAMETYPEDESCRIPTION
IdentifieroptionalstringValue for a unique identifier
NAMETYPEDESCRIPTION
descriptionstringBrief details about the transaction.
amountnumberThe amount of money for this line item.
checkNumberintegerThe check number for a check payment associated with the line item.
NAMETYPEDESCRIPTION
nextPageKeystringDisplays the next page number. This is an opaque identifier and does not need to be numeric or have any specific pattern.
previousPageKeystringDisplay the previous page number. This is an opaque identifier and does not need to be numeric or have any specific pattern.
totalElementsintegerTotal number of elements
NAMETYPEDESCRIPTION
nextobjectHateoasLink
prevobjectHateoasLink
NAMETYPEDESCRIPTION
pageobjectPageMetadata
linksobjectPageMetadataLinks
NAMETYPEDESCRIPTION
accountCategorystringThe account type for the transaction. Valid values: COMMERCIAL_ACCOUNT
accountIdstringThe account identifier for the transaction.
transactionIdstringLong term persistent identity of the transaction (unique to account)
postedTimestampstringThe date and time that the transaction was posted to the account. If the transaction is not yet posted, the transactionTimestamp value is returned. Format: YYYY-MM-DDThh:mm:ss.nnn[Z]
transactionTimestampstringThe date and time that the transaction was added to the server and backend systems. This returns the current date or a previous date based on the request call and criteria. Format: 'YYYY-MM-DDThh:mm:ss.nnn[Z]
descriptionstringThe description of the transaction, such as information about a merchant's name or place of business in a manner that is user friendly and accessible to the customer.
debitCreditMemostringThe posting type of a transaction. Valid values: DEBIT, CREDIT, MEMO
statusstringThe status of the transaction. Valid values: PENDING, MEMO, POSTED, AUTHORIZATION
amountnumberThe amount of funds in the currency of the account owner.
lineItemarrayLineItem
fiAttributesarrayFiAttribute
referencestringA reference number like a check number or lockbox number.
NAMETYPEDESCRIPTION
TransactionStatusstringThe status of a transaction. Valid values: AUTHORIZATION, MEMO, PENDING, POSTED
NAMETYPEDESCRIPTION
PaginatedArrayallOfPaginatedArray
TransactionsoneOfCommercialTransaction
NAMETYPEDESCRIPTION
TreasuryManagementTypestringIdentifies the source of the treasury management account. Valid values: BAI, BTRS, ISO, SWIFT

FDX error codes

This API specification is based on FDX standards. A standard HTTP response is returned with a code provided by the FDX system. This code can provide further details for unsuccessful messages. These errors follow a basic format with three parameters: code, message, and debugMessage. 

Error codeError messageRelated HTTP
status code
401Invalid Input400
403Forbidden, inadequate authorization403
409Conflict with current state of target resource409
500Internal server error500
501Subsystem unavailable501
503Scheduled Maintenance503
601Customer not found404
602Customer not authorized403
603Authentication failed401
701Account not found404
702Invalid start for end date400
703Invalid date range400
704Account type not support422
705Account is Closed409
800Payee not found404
801Payee cannot be modified or deleted400
802Payment not found404
803Due date too soon400
804Payment rejected400
805Payment cannot be modified or cancelled400
806Recurring payment not found404
807Recurring payment rejected400
808Recurring payment cannot be modified or cancelled400
901Source account not found404
902Source account closed404
903Source account not authorized for transfer401
904Destination account not found404
905Destination account closed404
906Destination account not authorized for transfer401
907Invalid amount400
908Duplicate transfer request409
909Transfer not available due to end of day processing503
910Insufficient funds400
911Transaction limit exceeded400
950Transfer not found404
1000Unable to retrieve key from JWKS endpoint500
1100Update ID not found404
1101Reward program ID not found404
1102Categories not found for the reward program404
1103Image ID not found for Transaction404
1104Statement ID not found for account404
1106FDX version not supported or not implemented501
1107Data not found for request parameters404
1108Statements not found for given Account404
1200 Tax form not found404
1201Tax form type not supported400
1202Tax year not supported400
1203Content type not supported406
1204Account ID is required400
1205Tax forms not yet been made available409
1206Method not allowed405
1207Too many requests429
1300Statement is processing400
ReleaseAPI versionChange descriptionImpact
October 20251.0.0
  • Released on the Developer Portal.
 

Impact levels

  • LOW: This is a minor change or enhancement that does not alter the operations of the API. Upgrading to the latest specifications is preferable but not required.
  • MID: The previous API version is valid and operates, but does not contain latest enhancements. You need to update your specifications to get these enhancements.
  • HIGH: The previous API version is no longer operable. You must upgrade to the latest specifications to access and use this API product.

YAML file download