Skip to main content
GET
/
consumers
/
{consumer_id}
/
connections
/
{connection_id}
/
transactions
Get transaction information
curl --request GET \
  --url https://api.chift.eu/consumers/{consumer_id}/connections/{connection_id}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "created_on": "2024-05-15T12:34:56Z",
  "method": "POST",
  "route": "/consumers/a65f95f4-7188-4866-a3ff-eb0fe17958c3/accounting/suppliers",
  "status_code": 200,
  "created_entity_id": "inv_123"
}

Authorizations

Authorization
string
header
required

This access token needs to be included in each of your request to the Chift API.

Path Parameters

connection_id
string<uuid>
required
consumer_id
string<uuid>
required

Query Parameters

client_request_id
string
required

Response

Successful Response

created_on
string<date-time>
required

Date and time when the API transaction started (UTC).

Examples:

"2024-05-15T12:34:56Z"

method
enum<string>
required

HTTP method of the original request.

Available options:
GET,
POST,
PUT,
PATCH,
DELETE,
HEAD,
OPTIONS
route
string
required

Path of the original request.

Examples:

"/consumers/a65f95f4-7188-4866-a3ff-eb0fe17958c3/accounting/suppliers"

status_code
integer
required

HTTP status code returned by the original request.

Examples:

200

created_entity_id
string | null

Identifier of the entity created by the request, when applicable (typically for POST).

Examples:

"inv_123"