Data Format Guide
Understanding the specific data formats required for various parameters and request payloads is essential for effectively interacting with the Braid API. This section outlines the required formats for several key parameters, along with examples to illustrate correct usage.
1. updatedEnd
updatedEnd
- Description: Specifies the end date and time for the search.
- Format: ISO 8601 standard in the format
YYYY-MM-DDTHH:MM:SS.sssZ
- Example:
updatedEnd=2022-09-30T19:35:01.058Z
2. updatedStart
updatedStart
- Description: Specifies the start date and time for the search.
- Format: ISO 8601 standard in the format
YYYY-MM-DDTHH:MM:SS.sssZ
- Example:
updatedStart=2022-09-01T19:35:01.058Z
3. amount
amount
- Description: The transaction amount, which must be greater than 0. Use decimal points as required.
- Format: Decimal number with two decimal places (e.g.,
xx.xx
) - Example:
amount=100.50
4. ACH transaction
ACH transaction
- Description: Indicates the direction of the ACH transaction.
true
= inbound transactionfalse
= outbound transaction
- Format: Boolean (
true
orfalse
) - Example:
ACH transaction=true
Summary
Following these format requirements ensures successful communication with the Braid API and accurate processing of requests. Adhering to the specified formats for each parameter is crucial for API interactions.
Updated about 2 months ago