Lista samtliga meddelanden i en 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 #

📋
Anropsdata (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 #

📋
Responsdata (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 #

📋
Anropsdata (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 #

📋
Responsdata (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 #

📄
Anropsdata (URL)
Copy to clipboard
https://api.ip1.net/v3/bundles/65eb3d14f1234567890abcdef/messages

Fields for call 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 #

📋
Responsdata (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”