List all messages in a bundle #

Quickstart #

๐Ÿ“„
Quick start (cURL)
Copy to clipboard
curl -X GET https://api.ip1.net/v3/conversations/65e15d14f1234547890ghijkl/messages \
  -H "Authorization: Bearer DIN_API_TOKEN"

Fetching details for all messages in a bundle


Call #

Endpoint: /bundles/{bundle}/messages

Methodology: POST

Example calls #

๐Ÿ“‹
Call data (URL)
Copy to clipboard
https://api.ip1.net/v3/conversations/65e15d14f1234547890ghijkl/messages

Call fields #

Field nameDescription of the projectRequiredTypeExample
bundleBundle ID you want to retrieve a single message fromYesQuery Parameter65e15d14f1234547890ghijkl

Responsibility #

Returns a list of message objects

Example response data #

๐Ÿ“‹
Response data (JSON)
Copy to clipboard
[
  {
    "id": "65eb3d14f784682890abc24f",
    "recipient": "46700123456",
    "status": "Delivered",
    "price": 0.45,
    "currency": "SEK",
    "modified": "2026-03-09T14:35:00Z"
  },
  {
    "id": "65eb3d14f784682890abc24g",
    "recipient": "46700123448",
    "status": "Delivered",
    "price": 0.45,
    "currency": "SEK",
    "modified": "2026-03-09T14:36:00Z"
  }
]

Response fields #

Field nameDescription of the projectTypeExample
idUnique message ID.string"65eb3d14f784682890abc24f"
recipientRecipient's phone number.stringโ€46700123456โ€
priceThe cost of this specific message.Number0.45
currencyThe currency for the cost.stringโ€SEKโ€
modifiedLatest status update time.DateTimeโ€03/09/2026 2:35 PMโ€

List a single message in a bundle #

Retrieves details for a single message based on its ID within a bundle.

Quickstart #

๐Ÿ’ป
Quick Start (cURL)
Copy to clipboard
curl -X GET https://api.ip1.net/v3/bundles/65e15d14f1234547890ghijkl/messages/65eb3d14f1234567890abcdef \
  -H "Authorization: Bearer DIN_API_TOKEN"

Call #

Endpoint: /bundles/{bundle}/messages/{id}

Methodology: GET

Example calls #

๐Ÿ“‹
Call data (URL)
Copy to clipboard
https://api.ip1.net/v3/bundles/65e15d14f1234547890ghijkl/messages/65eb3d14f1234567890abcdef

Call fields #

Field nameDescription of the projectRequiredTypeExample
bundleID for the bundle you want to retrieve a single message fromYesQuery Parameter65e15d14f1234547890ghijkl
idID of the individual message you want to retrieveYesQuery Parameter65eb3d14f1234567890abcdef

Responsibility #

A list returns a specific message object

Example response data #

๐Ÿ“‹
Response data (JSON)
Copy to clipboard
{
  "id": "65eb3d14f784682890abc24f",
  "recipient": "46700123456",
  "status": "Delivered",
  "price": 0.45,
  "currency": "SEK",
  "modified": "2026-03-09T14:35:00Z"
}

Response fields #

Field nameDescription of the projectTypeExample
idUnique message ID.string"65eb3d14f784682890abc24f"
recipientRecipient's phone number.stringโ€46700123456โ€
priceThe cost of this specific message.Number0.45
currencyThe currency for the cost.stringโ€SEKโ€
modifiedLatest status update time.DateTimeโ€03/09/2026 2:35 PMโ€

Used to retrieve the status and details of individual messages (per recipient) that are part of a specific campaign.

Quick start #

๐Ÿ’ป
Quick start (cURL)
Copy to clipboard
curl -X GET https://api.ip1.net/v3/bundles/65eb3d14f1234567890abcdef/messages \
  -H "Authorization: Bearer API_TOKEN"

Call #

Endpoint: /bundles/{bundle}/messages

Methodology: GET

Example of call data #

๐Ÿ“„
Call data (URL)
Copy to clipboard
https://api.ip1.net/v3/bundles/65eb3d14f1234567890abcdef/messages

Fields for request data #

Field nameDescription of the projectRequiredTypeExample
bundleThe unique ID (from previous response) of the bundle you want to retrieve.YesParam Path"65eb3d14f1234567890abcdefโ€

Responsibility #

A list of individual RCS messages.

Example of response data #

๐Ÿ“‹
Response data (JSON)
Copy to clipboard
[
  {
    "id": "65eb3d14f784682890abc24f",
    "recipient": "46700123456",
    "status": "Delivered",
    "price": 0.45,
    "currency": "SEK",
    "modified": "2026-03-09T14:35:00Z"
  }
]

Fields for response data #

Field nameDescription of the projectTypeExample
idUnique message ID.string"65eb3d14f784682890abc24f"
recipientRecipient's phone number.stringโ€46700123456โ€
priceThe cost of this specific message.Number0.45
currencyThe currency for the cost.stringโ€SEKโ€
modifiedLatest status update time.DateTimeโ€03/09/2026 2:35 PMโ€