Documentation Index
Fetch the complete documentation index at: https://docs.getmateo.com/llms.txt
Use this file to discover all available pages before exploring further.
To create a row post a JSON object whose keys are the names of the columns you would like to create. Missing properties will be set to default values when applicable.
curl "https://integration.getmateo.com/api/v1/contact" \
-X POST -H "Content-Type: application/json" \
-d '{ "full_name": "Max Mustermann" }'
No response body will be returned by default but you can add a select query parameter to select the columns that should be returned:
curl "https://integration.getmateo.com/api/v1/contact?select=full_name,birthday" \
-X POST -H "Content-Type: application/json" \
-d '{ "full_name": "Max Mustermann" }'
{
"full_name": "Max Mustermann",
"birthday": null
}