Skip to main content

Atrium API

Read Statement

Use this endpoint to read a JSON representation of the statement. The endpoint URL is the host (e.g. https://vestibule.mx.com or https://atrium.mx.com) plus the URI given in each statement object.

info
Note that the accept header for this request should be application/vnd.mx.atrium.v1+json.
GET
/users/{user_guid}/members/{member_guid}/statements/{statement_guid}

Request sample

Language:sh

_10
curl -i 'https://vestibule.mx.com/users/{user_guid}/members/{member_guid}/statements/{statement_guid}' \
_10
-H 'Accept: application/vnd.mx.atrium.v1+json' \
_10
-H 'MX-API-Key: {mx_api_key}' \
_10
-H 'MX-Client-ID: {mx_client_id}'

Response sample

200
Language:json

_12
{
_12
"statement": {
_12
"account_guid": "ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1",
_12
"created_at": "2016-10-13T18:08:00+00:00",
_12
"content_hash": "ca53785b812d00ef821c3d94bfd6e5bbc0020504410589b7ea8552169f021981",
_12
"guid": "STA-737a344b-caae-0f6e-1384-01f52e75dcb1",
_12
"member_guid": "MBR-7c6f361b-e582-15b6-60c0-358f12466b4b",
_12
"updated_at": "2016-10-13T18:09:00+00:00",
_12
"uri": "",
_12
"user_guid": "USR-fa7537f3-48aa-a683-a02a-b18940482f54"
_12
}
_12
}