Verification levels
Use these methods to obtain information about the available verification levels.
GET[host]/api/v2/my/verifications/levels |
|
GET[host]/api/v2/my//verifications/levels/{levelId} |
Get a list of verification levels
Use this method to obtain a list of the available verification levels.
Request
Header parameters:
Authorization: Bearer <access_token>
GET[host]/api/v2/my/verifications/levels
curl --location --request GET 'https://host.name/api/v2/my/verifications/levels?limit=10&offset=0' \
--header 'Authorization: Bearer <token>'
Response
A response includes an array of Verification Level objects providing information about the available verification levels.
Get verification level details
Use this method to obtain detailed information about a specified verification level.
Request
Header parameters:
Authorization: Bearer <access_token>
Path parameters:
- levelId required
The identifier of a verification level.
GET[host]/api/v2/my/verifications/levels/{levelId}
curl --location --request GET 'https://host.name/api/v2/my/verifications/levels/1' \
--header 'Authorization: Bearer <token>'
Response
A response includes a Verification Level object providing information about the specified verification level.