Statuses

Checking the status of submitted send requests

Request for check message status

GET https://a.looplookup.com/api/v1/lookup/status/{id}/

You can check the status of each individual message based on the message id.

Path Parameters

Name
Type
Description

id*

String

ID that you received after a successful request to send a message

Headers

Name
Type
Description

Authorization*

String

API Key

Content-Type*

String

application/json

Some fields in JSON may be optional

{
    "request_id": "2BC4FD6A-CE49-439F-81DF-E895C09CA49C",
    "status": "queued"
    "result_v1": {
    ...
    }
}

Please, check the callbacks section for examples of the result_v1 field.

Available statuses

All values will be in lowercase format

Value
Description

queued

Send request was successfully accepted and is being queued for a check.

processing

Request being processed.

completed

Request completed.

canceled

Request was canceled by the user.

Last updated