Get Job Checklist
Query a job's checklist
This endpoint lets you query for the Info Gathering Checklist of your job.
Endpoint
Method | Url |
---|---|
GET | v1.0/jobs/{job_id}/checklist |
Url Parameters
The job's ID.
Sample Request
Copied1curl -X GET 'https://api.worklayer.com/v1.0/jobs/499d692d-67aa-4127-a45c-b9e27f54afad/checklist' \2-H 'Authorization: Bearer {token}'
Sample Response
Copied1{2 "sections": [{3 "id": "PERSONAL_INFORMATION",4 "name": "Personal information",5 "requested_supporting_items": [{6 "id": "fd4b72f5-cd5e-44bb-aa31-daef92722616",7 "name": "W-2",8 "short_description": "Salary from employer",9 "preview_url": "https://www.irs.gov/pub/irs-pdf/fw2.pdf",10 "required": false,11 "ad_hoc": false,12 "completed": true,13 "update_time": "2023-09-29T12:15:00Z",14 "input": {15 "document": {16 "document_type_id": "W_2"17 }18 }19 }, {20 "id": "443013e3-4c1e-4fb1-b183-446e0f910171",21 "name": "Personal information",22 "short_description": "To streamline the process, please provide your essential personal information. Your data will be handled securely and used only for processing your request.",23 "required": true,24 "ad_hoc": false,25 "completed": true,26 "update_time": "2023-09-30T13:41:00Z",27 "input": {28 "personal_info": {29 "profile_id": "150e7f40-1158-4fe6-864c-6cce3879cd34",30 "profile_version": 131 }32 }33 }, {34 "id": "7a9e1d5b-8f32-4c9a-b95e-9c3a7d518e42",35 "name": "Personal tax refund method",36 "short_description": "Get the payout you deserve, your way.",37 "required": true,38 "ad_hoc": false,39 "completed": true,40 "update_time": "2023-09-30T14:22:00Z",41 "input": {42 "personal_refund_method": {43 "refund_method_id": "550e8400-e29b-41d4-a716-446655440000",44 "refund_method_version": 145 }46 }47 }]48 }49}
The input
object is a Discriminated Union, with the sole child object key name acting as the discriminator; in this case, document
and personal_info
. See the Supporting item section for more information.
Section
ID of the section.
The display name of the section.
An array of supporting items, such as specific documents or certain pieces of information. These are items that are requested from the client in order for the Pro to perform the work.
Supporting item
The name of the supporting item.
A short description of the supporting item.
An optional URL linking to a downloadable/viewable resource to provide as a sample of what is being asked for.
Whether the item is required before proceeding from the info gathering stage.
Whether the document was specifically requested by the provider.
Whether the item is considered completed.
Specification for collecting a supporting item and its corresponding value. Must contain exactly one property, which can be one of:
document
, indicating that a document is requested. Upload a document of the requested type to complete the item.personal_info
, indicating that the personal information of the client is requested. Save and provide a personal profile for the client to complete the item.spousal_info
, indicating that the spousal information of the client is requested. Save and provide a spousal profile to complete the item.dependents_info
, indicating that dependent information is requested. Create and provide one or more dependent profiles to complete the item.business_info
, indicating that business information is requested. Create and provide a business profile to complete the item.personal_refund_method
, indicating that personal refund method information is requested. Create and provide a personal refund method to complete the item.business_refund_method
, indicating that business refund method information is requested. Create and provide a business refund method to complete the item.
Document input
ID of the document type that is requested for the item to be considered completed. Upload a document of this type to complete the item.
Personal info
The ID of the personal profile when provided, null
otherwise.
The version of the personal profile when provided, null
otherwise.
Personal refund method input
The ID of the personal refund method when provided, null
otherwise.
The version of the personal refund method when provided, null
otherwise.
Business refund method input
The ID of the business refund method when provided, null
otherwise.
The version of the business refund method when provided, null
otherwise.
Spousal info
The ID of the spousal profile when provided, null
otherwise.
The version of the spousal profile when provided, null
otherwise.
Dependents info
An array of provided dependent profiles, each containing:
profile_id
(string): The ID of the dependent profileprofile_version
(number): The version of the dependent profile
Business info
The ID of the business profile when provided, null
otherwise.
The version of the business profile when provided, null
otherwise.