Loading...

Autocomplete Limit Reached

Fired when the Autocomplete API rate limit is exceeded.

GET https://api.getAddress.io/webhook/suggest-limit-reached/{id}?api-key={admin-key} 
GET https://api.getAddress.io/webhook/suggest-limit-reached?api-key={admin-key} 
POST https://api.getAddress.io/webhook/suggest-limit-reached?api-key={admin-key} 
POST https://api.getAddress.io/webhook/suggest-limit-reached/test?api-key={admin-key} 
DELETE https://api.getAddress.io/webhook/suggest-limit-reached?api-key={admin-key} 
Examples

Adds URL (endpoint) to be called

Request

POST https://api.getAddress.io/webhook/suggest-limit-reached?api-key={admin-key} 

Request Body

{
    "url": "https://your-domain.com/action"
}

Response 200

{
    "message": "Webhook : 'https://your-domain.com/action' has been created.",
    "id": "1"
}
Test

Sends a webhook to each added endpoint.

Request

POST https://api.getAddress.io/webhook/suggest-limit-reached/test?api-key={admin-key} 

Response 200

{
    "message": "Webhook has been sent"
}

Data sent to each added endpoint in the request body

{
    "version":"1.0.0.0",
    "action":"suggest_limit_reached",
    "created_at":4/24/2024 5:53:30 AM,
    "details":
    {
        "plan_limit":200
        "upgrade_link":https://admin.getaddress.io
    },
    "type":"usage"
}
Top