/forms endpoint.
The
/forms endpoint returns user inputs from two scenarios:- The user uploads employment documents through Argyle Link
- The user submits an income source form after being unable to locate their payroll provider in Argyle Link
id from this account object to retrieve forms by account.
The form object
Attributes
id(string (uuid), optional): Unique ID of the form.template(string (uuid), optional): The identifier of the template used.version(string, optional): The version of the template used.status(note, optional)metadata(object, optional)
Retrieve forms by account ID
GET/v1/forms
- Retrieve all forms associated with an account.
- This request returns an object with a results property that contains an array of all the form objects associated with the provided account ID.
Query parameters
account(string (uuid), required): The identifier of the account associated with the forms to be retrieved.
- curl
- python
Retrieve forms by ID
GET/v1/forms/{id}
- Retrieve a form object with the supplied ID.
- This request returns a form object if a valid identifier was provided.
Path parameters
id(string (uuid), required): The identifier of the form to be retrieved.
- curl
- python