Create Signature For Timesheet
create_signature_for_timesheet_companyCreate a new timesheet signature for a specified company. Requires company_id, user_id, and data to generate the signature record.
Instructions
Create new Signature associated with the specified Company. Pass the record's fields as top-level arguments — they are nested under "signature" in the request payload for you. company_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: company_id, data, user_id. Procore API: Project Management > Field Productivity. Endpoint: POST /rest/v1.0/companies/{company_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 | |
| upload_id | No | JSON request body field — unique identifier of the upload | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| signature_text | No | JSON request body field — acknowedgement text the signature was signed against. |