Getting Started with Tenant API
Msaaq Tenant API Reference
API Base URL
/tenant
path to the base URL https://api.msaaq.com/v1
, like so: https://api.msaaq.com/v1/tenant
.Headers
Accept-Language
en
, ar
) in the Accept-Language
header will return the response in the specified language. If the specified language is not available, the response will be in English.X-Tenant
X-Tenant
with the value of the Tenant's default domain (e.g., tenant_slug.msaaq.net
) or custom domain (e.g., custom-domain.com
). This header is used to identify the Tenant that the request is being made on behalf of.X-Tenant
header is not provided, you will receive the following 400 Bad Request
response in all requests:{
"status": "failed",
"code": "TENANT_HEADER_NOT_PROVIDED",
"message": {
"body": "No Tenant header was provided"
}
}
X-Tenant
header is provided but with an invalid value, you will receive the following 400 Bad Request
response:{
"status": "failed",
"code": "TENANT_NOT_FOUND",
"message": {
"body": "Tenant not found"
}
}
Request
cURL
JavaScript
Python
PHP
Response
200
TENANT_HEADER_NOT_PROVIDED 400
TENANT_NOT_FOUND 400
{
"message": "pong!"
}
Modified at 2024-12-30 07:14:45