Create record
documentedCreate a new record for the specified object.
POST /v2/objects/{object}/recordsRecordsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.attio.com/v2/objects/{{$object}}/records" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"data": {"values": {"{{$attribute_id_1}}": "{{$title}}", "{{$attribute_id_2}}": ["{{$option1}}", "{{$option2}}"]}}}'