GET
/
messages
/
individual
/
{accountId}
/
get-details
/
{messageId}
curl --request GET \
  --url https://api.a1base.com/v1/messages/individual/{accountId}/get-details/{messageId} \
  --header 'X-API-Key: <api-key>' \
  --header 'X-API-Secret: <api-key>'
{
  "status": "success",
  "data": {
    "chat_id": "<string>",
    "chat_name": "<string>",
    "participants": [
      "<string>"
    ],
    "account_id": "<string>",
    "message_id": "<string>",
    "to": "<string>",
    "from": "<string>",
    "body": "<string>",
    "status": "queued",
    "date_created": "2023-11-07T05:31:56Z",
    "direction": "<string>",
    "attachment_uri": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required
X-API-Secret
string
header
required

Headers

X-API-Key
string
required
X-API-Secret
string
required

Path Parameters

accountId
string
required
messageId
string
required

Response

200
application/json
Message details retrieved successfully
status
enum<string>
Available options:
success
data
object