Index
GET /:account/integrations
Note: This endpoint is still under active development, and may change without warning.
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
{
"@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": false,
"config": {
"baseUrl": "https://foo.bar.com/rest",
"clientSecret": "[FILTERED]"
},
"provider": "v2_webhook",
"settings": {}
}
],
"totalItems": 1
}