List Forms
Forms
List Forms
Returns cached form metadata for the account.
GET
List Forms
Returns the metadata for every form Cobalt has cached for your account — id, name, type, version, and status. The full form definition (categories, questions, answers) is not included here; fetch it for a single form with
The fields on each form:
GET /v1/forms/{id}.
Forms are cached by a sync. Trigger an on-demand refresh with POST /v1/forms/fetch; a daily scheduler also keeps the cache current.
Forms are currently supported for Credible.
When to use this
Use the list to find the form you want to document a service with. Theemr_form_id of the chosen form is the form_id you pass to POST /v1/services. Then read that form’s definition to get the question ids for the service answers.
Example Request
Example Response
- id: Cobalt form id (UUID). Use this with
GET /v1/forms/{id}. - emr_form_id: The form’s id in the EMR. This is the
form_idyou pass toPOST /v1/services. - emr_fvid: The EMR form-version id, or
null. - name: Form name.
- type, version, status, build_date: Form metadata from the EMR (any may be
null). - synced_at: When the form was last synced into the cache.