⬆️Update Identity
A Customers Identity Document Type may be updated if required.
Update Identity
PATCH
{{baseUrl}}/identity-documents/:identity_id/validate
The ID Document type can be changed/updated whilst maintaining the same identity_id
. The ID Document types include id_book, id_card and drivers_licence.
Path Parameters
Name
Type
Description
identity_id*
String
This is UUID for a specific Identity Record that gets generated and returned in the POST Create New Identity response.
Query Parameters
Name
Type
Description
type*
String
"type" can be id_card
or drivers_licence
or id_book
```json
{
"data": {
"id": "{{identityId}}",
"type": "id_card",
"front": null,
"back": null,
"valid": false
}
}
```
Last updated