Find record
Finds a record in a collection.
GET https://api.cogfy.com/collections/:collectionId/records/:recordId
Path params
collectionId
: The id of the collection that has the record to be found.recordId
: The id of the record to be found.
Response body
Example JSON response:
{
"id": "25d9e43c-a72a-48ca-98fe-971f8a6b68f5",
"properties": {
"249f76ee-08fd-4b2d-b089-166048deefce": {
"type": "text",
"text": {
"value": "Foo"
}
},
"03b132be-6d07-41ef-b466-a7584ec44cd6": {
"type": "text",
"text": {
"value": "Bar"
}
}
}
}