Get an integration
GEThttps://euwest.api.elasticpath.com/integrations/:integration_uuid
Returns the integration for the given UUID.
Request
Path Parameters
integration_uuid stringrequired
The unique identifier of the integration.
Responses
- 200
- 404
- 500
Success. An integration is returned.
- application/json
- Schema
- Example (from schema)
Schema
data object
{
"data": {
"id": "2da46671-b4c2-44ac-b133-d1221aafc77b",
"type": "integration",
"name": "Order shipping notification",
"description": "Send a shipping notification via email with discount code",
"enabled": true,
"integration_type": "webhook",
"observes": [
"string"
],
"configuration": {
"url": "https://sqs.eu-west-1.amazonaws.com/123456789/epcc-external-queue",
"aws_access_key_id": "****************JIMB",
"aws_secret_access_key": "************************************HK4o",
"region": "eu-west-1"
},
"links": {
"self": "?page[offset]=0&page[limit]=25"
},
"meta": {
"timestamps": {
"created_at": "2017-07-21T17:32:28Z",
"updated_at": "2017-07-21T17:32:28Z"
}
}
}
}
Not found. The requested entity does not exist.
- application/json
- Schema
- Example (from schema)
- not-found
Schema
errors ErrorBody[]required
{
"errors": [
{
"status": 500,
"title": "Internal server error",
"detail": "An internal error has occurred."
}
]
}
{
"errors": [
{
"title": "Not Found",
"status": 404,
"detail": "The resource could not be found"
}
]
}
Internal server error. There was a system failure in the platform.
- application/json
- Schema
- Example (from schema)
- internal-server-error
Schema
errors ErrorBody[]required
{
"errors": [
{
"status": 500,
"title": "Internal server error",
"detail": "An internal error has occurred."
}
]
}
{
"errors": [
{
"title": "Internal Server Error",
"status": 500
}
]
}
Authorization: http
name: bearerAuthtype: httpscheme: bearer
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://euwest.api.elasticpath.com/integrations/:integration_uuid' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
ResponseClear