(B) List Rapyd Verify Application Types
List the application types that are supported for a specific country.
country
Two-letter ISO 3166-1 ALPHA-2 code for the country.
Note
The response sample has been shortened since it contains many lines.
From the response, the application type for each entity type is displayed. For example, if the application is for a private limited company in France, then the application_type is the string typ_WyJGUiIsMixudWxsLCJQcml2YXRlIExpbWl0ZWQgQ29tcGFueSJd.
MISSING_FIELDS - [APP_LEVEL] - The request attempted an operation, but one or more required fields were missing. The request was rejected. Corrective action: Provide all of the fields that are listed at the end of the error code. For more information, see the API Reference.
{base_uri}/verify/api/applications/types/country/:country
List Rapyd Verify Application Types
curl -X get {base_uri}/verify/api/applications/types/country/FR -H 'access_key: your-access-key-here' -H 'Content-Type: application/json' -H 'idempotency: your-idempotency-parameter-here' -H 'salt: your-random-string-here' -H 'signature: your-calculated-signature-here' -H 'timestamp: your-unix-timestamp-here' -H 'api_timestamp: your-unix-timestamp-here'
{ "status": { "error_code": "", "status": "SUCCESS", "message": "", "response_code": "", "operation_id": "ba2d334e-d8b4-464e-8a40-c68fa6b06cca" }, "data": [ { "application_type": "typ_WyJGUiIsMixudWxsLCJQYXJ0bmVyc2hpcCJd", "entity_type": "Partnership", "country": "FR" }, { "application_type": "typ_WyJGUiIsMixudWxsLCJTb2xlIFByb3ByaWV0b3IiXQ==", "entity_type": "Sole Proprietor", "country": "FR" }, { "application_type": "typ_WyJGUiIsMixudWxsLCJQcml2YXRlIExpbWl0ZWQgQ29tcGFueSJd", "entity_type": "Private Limited Company", "country": "FR" }, { "application_type": "typ_WyJGUiIsMixudWxsLCJDaGFyaXR5IG9yIE5QTyJd", "entity_type": "Charity or NPO", "country": "FR" }, { "application_type": "typ_Z2xiX2luZGl2aWR1YWw=", "entity_type": "Individual", "country": "FR" } ] }