2025-07-24
8 days ago by marshall
Card Issuing
Card Settlement Report Field Update
- The
Transaction Type
field in the Card Settlement Report has been updated. - The original type
Purchase
has been renamed toAuthorization
.
Account Center
New Optional Field:other_documents
under representatives
- A new optional field
other_documents
is now supported underownership_details.representatives
to allow uploading POA or other supplemental documents. - Affected Endpoints:
Create SubAccount
(POST /v1/accounts/create_accounts
) , request onlyRetrieve Account
(GET /v1/accounts/{id}
) , response only
- Note: The field name differs between request and response:
- Request uses
doc_str
- Response uses
front
- Request uses
Create SubAccount request example:
"other_documents": [
{
"type": "PROOF_OF_ADDRESS" | "OTHERS",
"doc_str": "base64 string or file ID"
}
]
Retrieve Account response example:
"other_documents": [
{
"type": "PROOF_OF_ADDRESS" | "OTHERS",
"front": "base64 string or file ID"
}
]