All services
List connections
Returns a list of all configured connections.
GET
/connections
curl --request GET \
--url https://api.sandbox.{gr4vy_id}.gr4vy.app/connections \
--header 'Authorization: <authorization>'
{
"items": [
{
"active": true,
"definition": {
"category": "card",
"count": "1",
"group": "payment-service",
"icon_url": "https://cdn.gr4vy.app/stripe.svg",
"id": "stripe-card",
"name": "Stripe",
"provider": "Stripe",
"type": "connection-definition"
},
"id": "7b5e02bd-fa53-4ef0-b11e-1609d0f48cc5",
"name": "My Connection",
"type": "connection"
}
]
}
This endpoint requires the connections.read
scope.
Authorizations
Authorizationheaderrequired
string
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
items
object[]
curl --request GET \
--url https://api.sandbox.{gr4vy_id}.gr4vy.app/connections \
--header 'Authorization: <authorization>'
{
"items": [
{
"active": true,
"definition": {
"category": "card",
"count": "1",
"group": "payment-service",
"icon_url": "https://cdn.gr4vy.app/stripe.svg",
"id": "stripe-card",
"name": "Stripe",
"provider": "Stripe",
"type": "connection-definition"
},
"id": "7b5e02bd-fa53-4ef0-b11e-1609d0f48cc5",
"name": "My Connection",
"type": "connection"
}
]
}