Endpoints for sending and retrieving basic messages
This endpoint retrieves all messages.
A list of messages
Unauthorized.
No content
Internal Server Error
Internal server errorGET /api/v1/messages HTTP/1.1
Host: proven-4-2-test.proven.indicio.tech
x-api-key: YOUR_API_KEY
Accept: */*
[
{
"id": 1,
"message_id": "f51902a4-b771-4c1c-8f28-05396c19d3d5",
"contact_id": "8dba10d6-00d5-4f3a-ac8f-834211c9cbb9",
"invitation_id": null,
"message": "Hello Proven",
"state": "new",
"sent_time": "2025-06-26T21:53:46.397Z",
"locale": "en",
"wallet_id": "6b4ae41c-9c8a-49fd-9efa-fa0436d40b5c",
"created_at": "2025-06-26T21:53:47.282Z",
"updated_at": "2025-06-26T21:53:47.282Z"
},
{
"id": 2,
"message_id": "",
"contact_id": "8dba10d6-00d5-4f3a-ac8f-834211c9cbb9",
"invitation_id": 1,
"message": "Hello User",
"state": "sent",
"sent_time": "2025-06-26T21:54:49.309Z",
"locale": "",
"wallet_id": "6b4ae41c-9c8a-49fd-9efa-fa0436d40b5c",
"created_at": "2025-06-26T21:54:49.311Z",
"updated_at": "2025-06-26T21:54:49.848Z"
}
]This endpoint allows you to send a basic message.
The ID of the invitation.
1The ID of the contact.
The message content.
your message hereMessage sent successfully
Bad request. Invalid parameters.
stringUnauthorized.
No content
Internal Server Error
Internal server errorPOST /api/v1/messages HTTP/1.1
Host: proven-4-2-test.proven.indicio.tech
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 65
{
"invitation_id": 1,
"contact_id": "",
"message": "your message here"
}{
"success": "Message was sent!"
}This endpoint retrieves a message by its ID.
The ID of the message to retrieve.
A message object
The ID of the invitation.
The ID of the contact.
The message content.
Unauthorized.
No content
Message not found
Basic message record not foundInternal Server Error
Internal server errorGET /api/v1/messages/{id} HTTP/1.1
Host: proven-4-2-test.proven.indicio.tech
x-api-key: YOUR_API_KEY
Accept: */*
{
"id": 1,
"message_id": "f51902a4-b771-4c1c-8f28-05396c19d3d5",
"contact_id": "8dba10d6-00d5-4f3a-ac8f-834211c9cbb9",
"invitation_id": null,
"message": "Hello Proven",
"state": "new",
"sent_time": "2025-06-26T21:53:46.397Z",
"locale": "en",
"wallet_id": "6b4ae41c-9c8a-49fd-9efa-fa0436d40b5c",
"created_at": "2025-06-26T21:53:47.282Z",
"updated_at": "2025-06-26T21:53:47.282Z"
}