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

    Get all Integrations

    GET Get all Integrations

    https://api.moltin.com/v2/integrations
    

    Parameters

    Headers

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

    Request Example

    Curl

    curl GET https://api.moltin.com/v2/integrations \
         -H "Authorization: Bearer XXXX"
    

    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://api.moltin.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"
                    }
                }
            }
        ]
    }
    

    Was this helpful?

    Previous
    Integrations API Overview