[Integrations] Retrieve Specific Instance with its Field Values
From example Create an object
Retrieve a specific country instance with its field values
HTTP URL :
https://<your-instance>.yooi.io/api/store/type/Country/id/{object id}
HTTP method:
GET
Example
BASH
curl -X 'GET' \
'https://<your-instance>.yooi.io/api/store/type/Country/id/9d8126bb-4cde-4410-8eb3-77885aacc8f7' \
-H 'accept: application/json' \
-H 'Authorization: Bearer yt_secret_lqEnvjaiTBIZe08TbyT6FmbInin3CrfP'
Response
JSON
{
"id": "9d8126bb-4cde-4410-8eb3-77885aacc8f7",
"href": "/api/store/type/Country/id/9d8126bb-4cde-4410-8eb3-77885aacc8f7",
"created-at": 1652446363439,
"functional-id": "1",
"name": [
{
"type": "paragraph",
"children": [
{
"text": "France"
}
]
}
],
"population": 67340000,
"updated-at": 1652449407750
}
📋 Related articles