Skip to main content
GET
/
integrations
/
{id}
Retrieve an integration
curl --request GET \
  --url https://panel.sendcloud.sc/api/v3/integrations/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": {
    "id": 23452345,
    "shop_name": "Integration #1",
    "shop_url": "https://www.my-shop-integration.com/",
    "type": "api",
    "started_failing_at": "2023-11-10T16:16:42Z",
    "last_fetched_at": "2023-11-10T16:15:09Z",
    "created_at": "2023-11-04T14:15:22Z",
    "updated_at": "2023-11-08T12:23:56Z",
    "service_point_enabled": true,
    "service_point_carriers": [
      "ups",
      "dhl"
    ],
    "webhook_active": true,
    "webhook_url": "https://my-shop-integration.integrator/api/webhooks/sendcloud",
    "feedback_type": "eager"
  }
}

Documentation Index

Fetch the complete documentation index at: https://sendcloud.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Basic Authentication using API key and secrets is currently the main authentication mechanism.

Path Parameters

id
integer
required

Filtering on the Sendcloud integration ID

Required range: x >= 1

Response

Retrieved integration corresponding to the provided integration_id

Integration object as represented in the response of the get request.

data
Integration Response Object · object

Integration object.