← Home Permit Number Validation

Permit Number Validation

POSThttps://api.bayut.com/v1/properties/{property_id}/permit/validate

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
NameTypeRequiredDescriptionExample
property_idstringOptional12582091
AcceptstringOptionalapplication/json
permit_numberstringRequiredThe permit number of the property.
messagestringRequiredA 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."
}