Listed below are common errors that may be returned by the endpoint, along with their corresponding status code.
Status Code - 400
Missing Authorization header
{"error":{"type":"missing_authorization","message":"Your request does not include an 'Authorization' header with a bearer token for your account."}}
Status Code - 401
Expired Authorization header bearer token value
{"error":{"type":"expired_token","message":"The bearer token you have provided in the 'Authorization' header has expired. Please obtain a new one."}}
Status Code - 401
Invalid Authorization header bearer token value
{"error":{"type":"invalid_authorization","message":"The bearer token you have provided in the 'Authorization' header is invalid."}}
Status Code - 400
Returned if none of the tenant parameters are provided in the request body
No tenant information
{"error":{"type":"no_tenant_information","message":"You need to provide at least one of identifier, external_ref AND group, email_address, or phone_number in the request body."}}
Status Code - 400
Returned if both of the group_id and group_external_ref attributes are provided
Both group id and external ref provided for the find leases for tenant operation
{"error":{"type":"both_group_identifiers_provided","message":"You have provided both the group id and group external reference for the find leases for tenant operation. Please only provide one of the two."}}
Status Code - 400
Returned if no group_id or group_external_ref is provdided when identifying a tenant via an external_ref
No group id or group external ref provided for tenant external reference.
{"error":{"type":"both_group_identifiers_provided","message":"You have not a group id or group external reference when identifying a tenant via their external reference. Please provide one of the two."}}
curl--location--request POST 'https://api.travtus.com/leases/find-for-tenant/'\--header'Content-Type: application/json'\--header'Authorization: bearer <token>'\--data-raw '{"email_address":"[email protected]","active":true}'