You can insert new data using the POST method
curl "https://integration.getmateo.com/api/v1/contact" \ -X POST -H "Content-Type: application/json" \ -d '{ "full_name": "Max Mustermann" }'
HTTP/1.1 201 Created
select
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 }