List Message Receipts

Fetches receipts details from a specific message.

Fetch receipts details from a specific message.

get
Path parameters
messageIdanyrequired

The message ID

Query parameters
beforeanyoptional

Returns results from an opaque “before” cursor value as presented via a response cursor.

afteranyoptional

Returns results from an opaque “after” cursor value as presented via a response cursor.

Header parameters
sessionTokenanyrequired

Session authentication token.

Responses
curl -L \
  --url 'yourpodURL.symphony.com/pod/v1/admin/messages/{messageId}/receipts'
{
  "creator": {
    "id": 7215545058329,
    "name": "User Test"
  },
  "onBehalfOfUser": {
    "id": 7215545058329,
    "name": "User Test"
  },
  "stream": {
    "id": "lFpyw0ATFmji+Cc/cSzbk3///pZkWpe1dA==",
    "name": "Test Room",
    "streamType": "ROOM"
  },
  "creationDate": 1552999333141,
  "deliveryReceiptCount": 1,
  "readReceiptCount": 1,
  "emailNotificationCount": 1,
  "downloadReceiptCounts": [
    {
      "fileName": "internal_70781",
      "count": 1
    }
  ],
  "MessageReceiptDetail": [
    {
      "user": {
        "id": 7215545058329,
        "username": "dpayet",
        "firstName": "Dimitri",
        "lastName": "Payet",
        "emailAddress": "dpayet@om.fr"
      },
      "deliveryReceiptTimestamp": 1552999333784,
      "readReceiptTimestamp": 1552999335114,
      "emailNotificationTimestamp": 1552999335114,
      "downloadReceiptCounts": [
        {
          "fileName": "Untitled Document.txt",
          "timestamp": 1552999335740
        }
      ]
    }
  ],
  "pagination": {
    "cursors": {
      "before": "MTAxNTExOTQ1MjAwNzI5NDE=",
      "after": "NDMyNzQyODI3OTQw"
    },
    "previous": "https://tenantapi.d.isym.io/v1/tenantinfo?limit=25&before=MTAxNTExOTQ1MjAwNzI5NDE=",
    "next": "https://tenantapi.d.isym.io/v1/tenantinfo?limit=25&after=NDMyNzQyODI3OTQw"
  }
}

🚧 Required roles

Calling this endpoint requires the Content Management role with the VIEW_MANAGE_MESSAGES entitlement. See Bot Permissions for a list of roles and associated privileges.

Last updated

Was this helpful?