Get Integrations
Obtains the Gigapipe integration
Obtain the integrations
- Curl
- Python
curl -X 'GET' \
'https://api.gigapipe.com/v1/integrations/' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <your_access_token>'
# Payload response ::Array[Dictionary]
[
{
"name": "Kafka",
"slug": "kafka",
"type": {
"name": "Kafka",
"slug": "kafka",
"description": "Apache Kafka is an open-source distributed ..."
},
"created_at": "2022-02-17T14:16:07.791Z"
}
...
]
formats = gigapipe_client.integrations.get_integrations()
# Payload response while importing ::Array[Dictionary]
[
{
"name": "Kafka",
"slug": "kafka",
"type": {
"name": "Kafka",
"slug": "kafka",
"description": "Apache Kafka is an open-source distributed ..."
},
"created_at": "2022-02-17T14:16:07.791Z"
}
...
]
Response
Attributes
name ::String
The integration name
slug ::String
The integration slug
type ::Dictionary
The integration type
name ::String
The type name
slug ::String
The type slug
description ::String
The type description
created_at ::String
When the integration was created