v1

latestOpenAPI 3.1.02026-07-2411601020.7 KB

[Sandbox] Update Customer Profile+ Verification Status

[Available in Sandbox environment only] Simulates updating a CP+ profile's verification status.

put/sandbox/kyc/customer_profiles/{customer_profile_id}

Path parameters

customer_profile_idstring required

Customer Profile ID is retrieved from the response id of Create Customer Profile+ API.

Headers

X-XFERS-APP-API-KEYstring required

You can retrieve this from your Dashboard Developer Tools.<br><br><strong>Note:</strong> The X-XFERS-APP-API-KEY is a mandatory header for all authentication methods, including standard API key usage and HTTP Request Signing mode.

X-PUBLIC-KEY-IDstring

The Key ID, can be retrieved from your StraitsX Dashboard.<br><br><strong>Note:</strong> This header attribute is required when HTTP Request Signing is enabled for your account.

X-TIMESTAMPstring

Current Unix epoch time in seconds. Must be within ±300 seconds of server time.<br><br><strong>Note:</strong> This header attribute is required when HTTP Request Signing is enabled for your account.

X-NONCEstring

A unique UUID string per request, used for replay protection. Must not be reused within the timestamp window.<br>Regex: /\A[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\z/i<br><br><strong>Note:</strong> This header attribute is required when HTTP Request Signing is enabled for your account.

X-SIGNATUREstring

Base64-encoded digital signature of the canonical request string.<br><br><strong>Note:</strong> This header attribute is required when HTTP Request Signing is enabled for your account.

Request body

Response

200

Example response

{
  "data": {
    "id": "customer_profile_989407bb-1cc8-4e9b-a73b-864a4d1ba1c0",
    "type": "customer_profile",
    "attributes": {
      "customerName": "ABC Pte Ltd",
      "registrationType": "business",
      "registrationId": "20123232321",
      "verificationStatus": "verified",
      "address": {
        "city": "Singapore",
        "state": "Singapore",
        "street": "Northside 18th",
        "country": "SG",
        "postalCode": "8809"
      },
      "operatingAddress": {
        "city": "Singapore",
        "state": "Singapore",
        "street": "Northside 18th",
        "country": "SG",
        "postalCode": "8809"
      },
      "registrationIdCountry": "SG",
      "countryOfIncorporation": "SG",
      "dateOfIncorporation": "1999-09-09",
      "registrationIdType": "business_reg_no",
      "natureOfBusiness": "PERSONAL_INVESTMENT_COMPANIES",
      "usOwnership": true,
      "monthlyTransactionVolume": "80001_TO_100000",
      "sourceOfFunds": [
        "PERSONAL_SAVINGS"
      ],
      "otherSourceOfFunds": "other source of funds",
      "directors": [
        {
          "lastName": "Doe",
          "firstName": "John",
          "nationality": "SG",
          "dateOfBirth": "1950-01-01",
          "registrationId": "A12321321",
          "countryOfResidence": "SG",
          "registrationIdType": "passport",
          "registrationIdCountry": "SG"
        }
      ],
      "beneficialOwners": [
        {
          "lastName": "Doe",
          "firstName": "John",
          "nationality": "SG",
          "dateOfBirth": "1950-01-01",
          "registrationId": "A12321321",
          "countryOfResidence": "SG",
          "registrationIdType": "passport",
          "registrationIdCountry": "SG"
        }
      ],
      "trader": {
        "lastName": "Doe",
        "firstName": "John",
        "nationality": "SG",
        "dateOfBirth": "1950-01-01",
        "livenessResult": true,
        "registrationId": "A12321321",
        "countryOfResidence": "SG",
        "registrationIdType": "identity_card",
        "registrationIdCountry": "SG"
      },
      "createdAt": "2024-12-26T17:01:52Z",
      "updatedAt": "2024-12-26T17:01:59Z"
    }
  }
}