Update an App Card
POST/api/messages/{message_handle}/update-app-card
Continues an existing App Card by sending a new Apple message in the same iMessage session, from the same sender line and inline-reply context. The continuation receives its own message handle and delivery/read status updates.
Update an App Card
curl https://api.sendblue.co/api/messages/$MESSAGE_HANDLE/update-app-card \
-H 'Content-Type: application/json' \
-H "sb-api-key-id: $SENDBLUE_API_API_KEY" \
-H "sb-api-secret-key: $SENDBLUE_API_API_SECRET" \
-d '{}'{
"account_email": "[email protected]",
"app_card": {
"appName": "My App",
"extensionBundleId": "com.example.myapp.MessagesExtension",
"layout": {
"caption": "Check this out",
"imageSubtitle": "imageSubtitle",
"imageTitle": "imageTitle",
"imageUrl": "https://example.com",
"subcaption": "Tap to open",
"summary": "summary",
"trailingCaption": "trailingCaption",
"trailingSubcaption": "trailingSubcaption"
},
"teamId": "ABCDE12345",
"url": "https://example.com/deep-link",
"appStoreId": 1234567890,
"fallbackText": "fallbackText",
"interactive": true,
"sessionIdentifier": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"updateMessageHandle": "updateMessageHandle"
},
"content": "Hello, World!",
"date_created": "2023-10-01T12:00:00Z",
"date_updated": "2023-10-01T12:00:01Z",
"error_code": 0,
"error_message": "error_message",
"from_number": "+19998887777",
"is_outbound": true,
"location": {
"latitude": 37.7749,
"longitude": -122.4194,
"accuracy": 12,
"altitude": 8,
"duration": "oneHour",
"timestamp": "2026-06-23T12:00:00.000Z"
},
"media_url": "https://cdn.sendblue.co/media/abc123.jpg",
"message_handle": "msg_abc123def456",
"message_type": "message",
"number": "+18887776666",
"reply_to": {
"message_handle": "msg_parent123",
"part_index": 0
},
"seat_id": "550e8400-e29b-41d4-a716-446655440000",
"send_style": "celebration",
"sender_email": "[email protected]",
"status": "QUEUED",
"thread_originator": {
"message_handle": "msg_root456",
"part": "0:0"
}
}Returns Examples
{
"account_email": "[email protected]",
"app_card": {
"appName": "My App",
"extensionBundleId": "com.example.myapp.MessagesExtension",
"layout": {
"caption": "Check this out",
"imageSubtitle": "imageSubtitle",
"imageTitle": "imageTitle",
"imageUrl": "https://example.com",
"subcaption": "Tap to open",
"summary": "summary",
"trailingCaption": "trailingCaption",
"trailingSubcaption": "trailingSubcaption"
},
"teamId": "ABCDE12345",
"url": "https://example.com/deep-link",
"appStoreId": 1234567890,
"fallbackText": "fallbackText",
"interactive": true,
"sessionIdentifier": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"updateMessageHandle": "updateMessageHandle"
},
"content": "Hello, World!",
"date_created": "2023-10-01T12:00:00Z",
"date_updated": "2023-10-01T12:00:01Z",
"error_code": 0,
"error_message": "error_message",
"from_number": "+19998887777",
"is_outbound": true,
"location": {
"latitude": 37.7749,
"longitude": -122.4194,
"accuracy": 12,
"altitude": 8,
"duration": "oneHour",
"timestamp": "2026-06-23T12:00:00.000Z"
},
"media_url": "https://cdn.sendblue.co/media/abc123.jpg",
"message_handle": "msg_abc123def456",
"message_type": "message",
"number": "+18887776666",
"reply_to": {
"message_handle": "msg_parent123",
"part_index": 0
},
"seat_id": "550e8400-e29b-41d4-a716-446655440000",
"send_style": "celebration",
"sender_email": "[email protected]",
"status": "QUEUED",
"thread_originator": {
"message_handle": "msg_root456",
"part": "0:0"
}
}