POST
/
v3
/
identity
/
batch
curl --request POST \
  --url https://platform.uat.proveapis.com/v3/identity/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "clientRequestId": "71010d88-d0e7-4a24-9297-d1be6fefde81",
  "items": [
    {
      "phoneNumber": "2001001695",
      "deviceId": "bf9ea15d-7dfa-4bb4-a64c-6c26b53472fc",
      "clientCustomerId": "e0f78bc2-f748-4eda-9d29-d756844507fc"
    },
    {
      "phoneNumber": "2001001695",
      "deviceId": "bf9ea15d-7dfa-4bb4-a64c-6c26b53472fc",
      "clientCustomerId": "e0f78bc2-f748-4eda-9d29-d756844507fc"
    }
  ]
}'
{
  "results": [
    {
      "identityId": "e0f78bc2-f748-4eda-9d29-d756844507fc"
    },
    {
      "error": "Invalid Phone Number"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the /token endpoint. Refer to the Authentication page for more details.

Body

application/json

Request body for the V3 Batch Enroll Identities API.

Response

200
application/json

V3BatchEnrollIdentitiesResponse

Response body for the V3 Batch Enroll Identities API.