Skip to main content

Validate User Details by User ID, Country Code, and Tenant ID

GET /api/v1/users/{userId}/countries/{countryCode}/tenants/{tenantId}/validate-details

Description

Validate user details by User ID, Country Code, and Tenant ID.

Path Parameters

NameTypeDescription
tenantIdstringThe tenant ID (path)
userIdstringThe user ID (path)
countryCodestringThe country code (path)

Request Headers

NameTypeDescription
service-api-keystringService API key (header)
service-api-codestringService API code (header)

Query Parameters

NameTypeDescription
businessIdstringBusiness ID (query)

Example

GET /api/v1/users/123/countries/US/tenants/456/validate-details?businessId=789
service-api-key: your_api_key
service-api-code: your_api_code

Response Code: 200 - OK

Description

No links.

Example

{
"status": true,
"message": "Validation successful"
}

Method: GET

>http://your-api-url/api/v1/users/{userId}/countries/{countryCode}/tenants/{tenantId}/validate-details

Headers

Content-TypeValue
service-api-keyyour_api_key
service-api-codeyour_api_code

Query Parameters

ParamValue
businessId789

🔑 Authentication bearer

ParamValueType
token{{accessCode}}string

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /api/v1/users/{userId}/countries/{countryCode}/tenants/{tenantId}/validate-details \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!