Return Address

Return an address to Amala for validation

The return address endpoint (/business/return-address) enables providers and partners of Amala to provide client addresses which would be validated by our address verification system.

Endpoint

POST https://api.amala.cloud/v1/business/return-address

Requires an api_key query parameter and the following fields:

  • address - The address provided by the provider

  • postal_code - The postal code of the address provided

Example Request

curl -X POST "https://api.amala.cloud/v1/business/return-address?api_key=94c9a525f3d3ac72e9f953d0be4dfea1"\   
>  -H 'Content-Type: application/json'\ 
>  -d '{"address": "Rukayat Plaza, Jabi", "postal_code": "900108"}

Response

{
    "status": "Success"
}

Response status codes

201 - Created
400 - Bad Request
401 - Unauthorized

Last updated