Integrations
GET /:account/integrations
Get a list of all added Intgrations
Examples
Get Integrations
Request
GET /my_account/integrations
Example
$ curl -i -H Accept:"application/vnd.textus+jsonld" \
-H Authorization:"Bearer {token}" \
-X GET /my_account/integrations
Response
Status
200
Response Type
Example Body
{
"@type": "hydra:Collection",
"@context": "/contexts/hydra:Collection.jsonld",
"id": "http://www.example.com/my_account/integrations",
"members": [
{
"@type": "Integration",
"@context": "/contexts/Integration.jsonld",
"id": "/integrations/0yX2VrJ",
"active": true,
"provider": "webhook",
"config": {
"baseUrl": "https://foo.bar.com/zest",
"webhookSecret": "textus-abcdefgh12345678",
"clientSecret": "[FILTERED]"
},
"settings": {},
"isHealthy": true,
"ipaas": false,
"category": null
}
],
"totalItems": 1
}