Create a test statement
POST/statements/:id
This request is only available in test mode.
Request
Path Parameters
id stringrequired
- application/json
Body
statementDate string
Default value: Today
Statement date
type stringrequired
Possible values: [CAMT.053
]
Statement type
transactionIds string[]required
Transactions to associate with this statement
Responses
- 200
OK
Response Headers
Acme-Mode
string
Has the value LIVE if the data exists in live production mode or the value TEST if the data exists in test sandbox mode.
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
Unique identifier for the object
statementDate stringrequired
Statement date
type stringrequired
Possible values: [CAMT.053
]
Statement type
bankAccount
object
required
The bank account of the statement
id string
Internal Account ID
bank string
Bank SWIFT/BIC code
bankAccountNumber string
Account number
createdAt stringrequired
Time at which the object was created. In ISO 8601 format.
updatedAt stringrequired
Time at which the object was last updated. In ISO 8601 format.
{
"id": "stmt_0H3BQSYF6QQ0W",
"statementDate": "2024-02-06",
"type": "CAMT.053",
"bankAccount": {
"id": "intacc_12345678",
"bank": "DBSSSGSGXXX",
"bankAccountNumber": "0052312891"
},
"createdAt": "2023-04-24T00:00:00.000000Z",
"updatedAt": "2023-04-24T00:00:00.000000Z"
}
Loading...