← Home
Permit Number Validation
Permit Number Validation
This endpoint is used to validate permit number of a property. If the permit number is invalid, the property is rejected. The Permit Number validation process may include a verification of the associated agency's trade licenses, these can be added through the PUT v1/agencies/{agency} endpoint.
🔐 Bearer Token: Provide your bearer token in the Authorization header when making requests to protected resources.
Query Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
| property_id | string | Optional | 12582091 | |
| Accept | string | Optional | application/json | |
| permit_number | string | Required | The permit number of the property. | |
| message | string | Required | A message regarding successful Permit Number Validation. |
Responses
200✅
401⚠️
403⚠️
422⚠️
Code Examples
curl --location 'https://api.bayut.com/v1/properties/12582091/permit/validate' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"permit_number": "20250000537099"
}'{
"message": "Permit number is validated and the listing is made live."
}