Appearance
Fresh 2026
SOP: Write Data with /meta
Procedure to create or update a record across any integration using the meta-first pattern.
Prerequisites
- A Linked Account with write scopes enabled.
- The Common Model you want to write (for example
Candidate,Invoice,Ticket).
Procedure
- Fetch field requirements. Call the model's
/metaendpoint (GET /{model}/meta) for the Linked Account. Read the required and optional fields it returns. Requirements vary by integration. - Build the request body. Populate the body from the meta response so it matches that integration's needs. Do not hardcode fields.
- Submit the write.
POST /{model}to create orPATCH /{model}/{id}to update. - Handle nested relations. If the record references related records, include them as nested writes in the same request.
- Inspect the response. Confirm the record id and that the change is reflected at the source.
Verification
- Write returns
201(create) or200(update). - A follow-up
GETreturns the new or updated record.