List document types
GEThttps://authenticalls.com/kyc/client/api/id-documents/document-types/:country_iso
Get Supported Document Types for a Specific Country
This endpoint returns a list of all supported document types for a given country. Some of these document types go through a generic verification process.
For document types that undergo a more thorough verification, refer to List countries documents support.
Request
Path Parameters
country_iso stringrequired
Responses
- 200
- 404
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
idDocumentobjectrequired
The document type enum
labelstringrequired
The human readable label of the document type
[
{
"idDocument": {},
"label": "string"
}
]
Invalid country ISO provided
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://authenticalls.com/kyc/client/api/id-documents/document-types/:country_iso");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear