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
| Name | Type | Description |
|---|---|---|
tenantId | string | The tenant ID (path) |
userId | string | The user ID (path) |
countryCode | string | The country code (path) |
Request Headers
| Name | Type | Description |
|---|---|---|
service-api-key | string | Service API key (header) |
service-api-code | string | Service API code (header) |
Query Parameters
| Name | Type | Description |
|---|---|---|
businessId | string | Business 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-Type | Value |
|---|---|
| service-api-key | your_api_key |
| service-api-code | your_api_code |
Query Parameters
| Param | Value |
|---|---|
| businessId | 789 |
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
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!