# Service-Scoped Delivery Receipt Resource

**Service-Scoped Delivery Receipts** in Conversations provide visibility into the status of Service-Scoped [Conversation Messages](/docs/conversations/api/service-conversation-message-resource) sent across different Conversations within a **non-default** Conversation Service.

Using Service-Scoped Delivery Receipts, you can verify that Messages have been sent, delivered, or even read (for OTT) by Conversations Participants within a **non-default, service-scoped** Conversation Service.

## API Base URL

All URLs in the reference documentation use the following base URL:

```bash
https://conversations.twilio.com/v1

```

For Conversations applications that build on more than one Conversation Service instance, you will need to specify the Conversation Service SID in the REST API call:

```bash
GET /v1/Services/ISxx/Conversations/CHxx/Messages

```

## Receipt Properties

```json
{"type":"object","refName":"conversations.v1.service.service_conversation.service_conversation_message.service_conversation_message_receipt","modelName":"conversations_v1_service_service_conversation_service_conversation_message_service_conversation_message_receipt","properties":{"account_sid":{"type":"string","minLength":34,"maxLength":34,"pattern":"^AC[0-9a-fA-F]{32}$","nullable":true,"description":"The unique ID of the [Account](/docs/iam/api/account) responsible for this participant."},"chat_service_sid":{"type":"string","minLength":34,"maxLength":34,"pattern":"^IS[0-9a-fA-F]{32}$","nullable":true,"description":"The SID of the [Conversation Service](/docs/conversations/api/service-resource) the Message resource is associated with."},"conversation_sid":{"type":"string","minLength":34,"maxLength":34,"pattern":"^CH[0-9a-fA-F]{32}$","nullable":true,"description":"The unique ID of the [Conversation](/docs/conversations/api/conversation-resource) for this message."},"message_sid":{"type":"string","minLength":34,"maxLength":34,"pattern":"^IM[0-9a-fA-F]{32}$","nullable":true,"description":"The SID of the message within a [Conversation](/docs/conversations/api/conversation-resource) the delivery receipt belongs to"},"sid":{"type":"string","minLength":34,"maxLength":34,"pattern":"^DY[0-9a-fA-F]{32}$","nullable":true,"description":"A 34 character string that uniquely identifies this resource."},"channel_message_sid":{"type":"string","minLength":34,"maxLength":34,"pattern":"^[a-zA-Z]{2}[0-9a-fA-F]{32}$","nullable":true,"description":"A messaging channel-specific identifier for the message delivered to participant e.g. `SMxx` for SMS, `WAxx` for Whatsapp etc. "},"participant_sid":{"type":"string","minLength":34,"maxLength":34,"pattern":"^MB[0-9a-fA-F]{32}$","nullable":true,"description":"The unique ID of the participant the delivery receipt belongs to."},"status":{"type":"string","enum":["read","failed","delivered","undelivered","sent"],"description":"The message delivery status, can be `read`, `failed`, `delivered`, `undelivered`, `sent` or null.","refName":"service_conversation_message_receipt_enum_delivery_status","modelName":"service_conversation_message_receipt_enum_delivery_status"},"error_code":{"type":"integer","default":0,"description":"The message [delivery error code](/docs/sms/api/message-resource#delivery-related-errors) for a `failed` status, "},"date_created":{"type":"string","format":"date-time","nullable":true,"description":"The date that this resource was created."},"date_updated":{"type":"string","format":"date-time","nullable":true,"description":"The date that this resource was last updated. `null` if the delivery receipt has not been updated."},"url":{"type":"string","format":"uri","nullable":true,"description":"An absolute API resource URL for this delivery receipt."}}}
```
