Composable Frontend 2.0 Learn more 

  • Integrations (Event Subscriptions/Notifications)/
    Integrations API/
    Get all Integrations

    Get all Integrations

    GET Get all Integrations

    https://useast.api.elasticpath.com/v2/integrations
    

    Parameters

    Headers

    NameRequiredTypeDescription
    AuthorizationRequiredstringThe Bearer token required to get access to the API.

    Request Example

    Curl

    curl GET https://useast.api.elasticpath.com/v2/integrations \
         -H "Authorization: Bearer XXXX" \
         -H "Content-Type: application/json" \
    

    JavaScript SDK

    // Where `EPCC` is an authenticated client
    await EPCC.Integrations.All();
    

    Response Example

    200 OK

    {
        "data": [
            {
                "id": "71679ff8-36c1-4f8f-8ed2-cea50555d78c",
                "type": "integration",
                "integration_type": "webhook",
                "name": "Order shipping notification",
                "description": "Send a shipping notification via email with discount code.",
                "enabled": true,
                "configuration": {
                    "url": "https://yourwebsite.com/order-created-notification"
                },
                "observes": ["order.fulfilled"],
                "links": {
                    "self": "https://useast.api.elasticpath.com/v2/integrations/5f2c7366-c97f-4047-b3f3-a603270db189"
                },
                "meta": {
                    "timestamps": {
                        "created_at": "2018-04-19T10:21:06.747Z",
                        "updated_at": "2018-04-19T10:40:19.805Z"
                    }
                }
            }
        ]
    }
    
    Previous
    Integrations API Overview