Skip to content

RequestedFormCompletion

A request, from a provider to a client, to fill out a form

Fields

custom_module_form · CustomModuleForm · The form to fill out
custom_module_form_id · String · The ID of the form to fill out
date_to_show · ISO8601DateTime · The relevant date to show, if the form is completed it shows the completed at date, if there is an associated incomplete form it shows when that was started, otherwise shows when the request was created
form_answer_group · FormAnswerGroup · The filled form that completes the request
form_answer_group_id · String · The id of the filled form that completes the request
id · ID! · required · The unique identifier of the form
item_type · String! · required · type of form requested
metadata · String · A serialized JSON string of metadata. Maximum character limit of 128,000. Only accessible by staff and providers
recipient · User · The recipient (client)
recipient_id · String · The ID of the recipient (client)
recurring_form · RecurringForm · Recurring Form related to the request
sender · User · The sender (provider)
sender_id · String · The ID of the sender (provider)
status · String · The status of the request

Used By

Definition

"""
A request, from a provider to a client, to fill out a form
"""
type RequestedFormCompletion {
"""
The form to fill out
"""
custom_module_form: CustomModuleForm
"""
The ID of the form to fill out
"""
custom_module_form_id: String
"""
The relevant date to show, if the form is completed it shows the completed at date, if there is an associated incomplete form it shows when that was started, otherwise shows when the request was created
"""
date_to_show: ISO8601DateTime
"""
The filled form that completes the request
"""
form_answer_group: FormAnswerGroup
"""
The id of the filled form that completes the request
"""
form_answer_group_id: String
"""
The unique identifier of the form
"""
id: ID!
"""
type of form requested
"""
item_type: String!
"""
A serialized JSON string of metadata. Maximum character limit of 128,000. Only accessible by staff and providers
"""
metadata: String
"""
The recipient (client)
"""
recipient: User
"""
The ID of the recipient (client)
"""
recipient_id: String
"""
Recurring Form related to the request
"""
recurring_form: RecurringForm
"""
The sender (provider)
"""
sender: User
"""
The ID of the sender (provider)
"""
sender_id: String
"""
The status of the request
"""
status: String
}