Skip to main content

List document types

GET 

https://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

Schema
  • Array [
  • idDocumentobjectrequired

    The document type enum

    labelstringrequired

    The human readable label of the document type

  • ]
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());
Request Collapse all
Base URL
https://authenticalls.com/kyc/client/api
Parameters
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!