2025-07-24

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 to Authorization.

Account Center

New Optional Field:other_documents under representatives

  • A new optional field other_documents is now supported under ownership_details.representatives to allow uploading POA or other supplemental documents.
  • Affected Endpoints:
    • Create SubAccount (POST /v1/accounts/create_accounts) , request only
    • Retrieve Account (GET /v1/accounts/{id}) , response only
  • Note: The field name differs between request and response:
    • Request uses doc_str
    • Response uses front

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"
  }
]