v1

latestOpenAPI 3.1.02026-07-226250251.5 KB
Customers

Update Customer

Submit an RFI response for an individual or business customer. You must pass only the fields and documents specified in the RFI. Submitting data that was not requested will trigger an error.

patch/v1/customers/{customer_id}

Path parameters

customer_idstring uuid required

Unique identifier of the customer to update

Request body

OR

Example request

{
  "proof_of_identity": {
    "type": "PASSPORT",
    "number": "A12345678",
    "country": "USA",
    "issue_date": "2020-01-15",
    "expiry_date": "2030-01-15",
    "files": [
      {
        "uri": "/AbAcQ4hn_0652746727637.pdf",
        "side": "FRONT"
      }
    ]
  },
  "proof_of_address": {
    "type": "UTILITY_BILL",
    "country": "USA",
    "files": [
      {
        "uri": "/AbAcQ4hn_0652746727638.pdf"
      }
    ]
  }
}

Response

Customer updated successfully

Example response

{
  "data": {
    "customer_id": "ed54db74-7dbe-47d2-8ea0-c2bf2a9dda06"
  }
}