ZINC API
HomeSign InSupport
HomeSign InSupport
  1. Currency Accounts
  • API Reference
  • Authentication
    • Get Access token
      GET
  • Core Resources
    • Accounts
      • Create Account
      • Get Account
      • Update Account
      • Get Account Balance
      • Submit Account For Activation
      • Get Account Transactions
      • Get Account Supported Currencies
      • Get Account Beneficiaries
    • Beneficiary
      • Add Beneficiary
      • Get Beneficiaries
      • Delete Beneficiary
    • Currency Accounts
      • Create Currency Account
        POST
      • Get Currency Account Details
        GET
    • Payouts
      • Create Payout
      • Get Payouts For Account
    • Cards
      • Simulation
        • Simulate Card Transaction
      • Create Card
      • Get Card Details
      • Update Transaction Limits
      • Update Cards Status
      • Get Card Transactions
    • Conversions
      • Create Conversion
      • Get Quote
    • Services
      • Upload File
  1. Currency Accounts

Create Currency Account

POST
/api/v1/currency_account

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
x-api-version
string 
optional
Body Params application/json
object {0}
Example
{
    "currency": "SG"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-sandbox.z.inc/api/v1/currency_account' \
--header 'x-api-version;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "currency": "SG"
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "account_name": "Test Account",
    "account_number": "8853878667",
    "account_type": "Current",
    "capability": {
        "clearing_systems": [
            "FAST",
            "MEPS",
            "GIRO"
        ],
        "payment_methods": [
            "SWIFT",
            "LOCAL"
        ],
        "support_direct_debit": false
    },
    "country_code": "SG",
    "currency": "SGD",
    "id": "fc610a36-dfb1-4a96-9036-1959d06ef960",
    "institution": {
        "address": "12 Marina Boulevard, DBS Asia Central, Marina Bay Financial Centre Tower 3",
        "city": "Singapore",
        "name": "DBS Bank Ltd",
        "zip_code": "018982"
    },
    "nick_name": "SG Global Account",
    "request_id": "a51f1c6c-2305-4868-98ab-74f489d9f737",
    "routing_codes": [
        {
            "type": "bank_code",
            "value": "7171"
        },
        {
            "type": "branch_code",
            "value": "072"
        }
    ],
    "status": "ACTIVE",
    "swift_code": "DBSSSGSG"
}
Modified at 2024-07-27 18:40:34
Previous
Delete Beneficiary
Next
Get Currency Account Details