Create Checklist Signature Request
create_checklist_signature_requestCreate a checklist signature request by specifying list, project, and signatory IDs. Resolves the parent list and returns the new record with its ID.
Instructions
Creates a Signature Request for a specified Checklist. Pass the record's fields as top-level arguments — they are nested under "signature_request" in the request payload for you. list_id must identify an existing parent record — resolve it with the matching list tool first. Creates the checklist signature request and returns it with its new id (HTTP 201); calling it again creates another record. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, and 404 when an id does not resolve. Required parameters: list_id, project_id, signatory_id. Procore API: Project Management > Inspections. Endpoint: POST /rest/v1.0/checklist/lists/{list_id}/signature_requests
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| list_id | Yes | URL path parameter — unique identifier of the list | |
| project_id | Yes | Query string parameter — unique identifier for the project. | |
| signatory_id | Yes | JSON request body field — iD of the User requested to sign |