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
headerrequired

Path Parameters

endCustomerID
string
required
objectID
integer
required

Body

application/json
filters
object[]

Response

200 - application/json
example_field_1
integer
example_field_2
string
example_field_3
object