v1

latestOpenAPI 3.0.3Apache 2.02026-07-133681213.9 KB
Connections

Get resource example

This endpoint returns a downstream example of a given resource.

get/vault/connections/{unified_api}/{service_id}/{resource}/example

Path parameters

unified_apistring required

Unified API

service_idstring required

Service ID of the resource to return

resourcestring required

Name of the resource (plural)

Headers

x-apideck-consumer-idstring required

ID of the consumer which you want to get or push data from

x-apideck-app-idstring required

The ID of your Unify application

Response

Resource Schema

status_codeinteger required

HTTP Response Status Code

statusstring required

HTTP Response Status

_rawRaw nullable

Raw response from the integration when raw=true query param is provided

Example response

{
  "status_code": 200,
  "status": "OK",
  "data": {
    "unified_api": "crm",
    "service_id": "close",
    "resource": {
      "id": "companies",
      "name": "Companies",
      "downstream_id": "accounts",
      "downstream_name": "Accounts"
    }
  },
  "meta": {
    "items_on_page": 50,
    "cursors": {
      "previous": "em9oby1jcm06OnBhZ2U6OjE=",
      "current": "em9oby1jcm06OnBhZ2U6OjI=",
      "next": "em9oby1jcm06OnBhZ2U6OjM="
    },
    "total_count": 1,
    "warnings": [
      {
        "type": "downstream_request_failed",
        "status_code": 429,
        "operation": "getManager"
      }
    ]
  }
}