Create Signature For Timesheet
create_signature_for_timesheet_projectCreate a new timesheet signature for a Procore project using the specified user and data. Returns the signature with its new ID.
Instructions
Create new Signature associated with the specified Project. Pass the record's fields as top-level arguments — they are nested under "signature" in the request payload for you. project_id defaults to the value set by procore_set_config when omitted. Creates the signature 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: project_id, data, user_id. Procore API: Project Management > Field Productivity. Endpoint: POST /rest/v1.0/projects/{project_id}/timesheets/signatures
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | JSON request body field — attachment representing the Signature. To upload an attachment, you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `data`... | |
| user_id | Yes | JSON request body field — iD of the user the signature is attributed to | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| signature_text | No | JSON request body field — acknowedgement text the signature was signed against. |