Create Action Plan Receiver Signature
create_action_plan_receiver_signatureCreate a signature for an action plan receiver. Requires project and receiver IDs plus an attachment or base64 image; returns the new signature.
Instructions
Create a single Action Plan Receiver Signature. Note that only one of attachment or attachment_string may be passed when creating a signature, not both. 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, and plan_receiver_id must identify an existing parent record — resolve it with the matching list tool first. Creates the action plan receiver 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, plan_receiver_id, attachment, attachment_string. Procore API: Project Management > Action Plans. Endpoint: POST /rest/v1.0/projects/{project_id}/action_plans/plan_receivers/{plan_receiver_id}/signature
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| attachment | 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 with the `attachment` file. | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| plan_receiver_id | Yes | URL path parameter — action Plan Receiver ID | |
| attachment_string | Yes | JSON request body field — base64 encoded string representing PNG image of signature |