Customer Data
Query object record for customer
Query a single object record directly from a customer's source. The response payload will match the object schema you've defined.
POST
/
customer
/
{endCustomerID}
/
object
/
{objectID}
/
record
Authorization
Path
Body
curl --request POST \
--url https://api.fabra.io/customer/{endCustomerID}/object/{objectID}/record \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <x-api-key>' \
--data '{
"filters": [
{
"field_name": "user_id",
"field_value": 2
}
]
}'
{
"example_field_1": 1,
"example_field_2": "hello",
"example_field_3": {
"nested": "data"
}
}
Authorizations
X-API-KEY
string
headerrequiredPath Parameters
endCustomerID
string
requiredobjectID
integer
requiredBody
application/json
filters
object[]
Response
200 - application/json
example_field_1
integer
example_field_2
string
example_field_3
object
curl --request POST \
--url https://api.fabra.io/customer/{endCustomerID}/object/{objectID}/record \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <x-api-key>' \
--data '{
"filters": [
{
"field_name": "user_id",
"field_value": 2
}
]
}'
{
"example_field_1": 1,
"example_field_2": "hello",
"example_field_3": {
"nested": "data"
}
}