Create Action Plan Receiver Signature
create_action_plan_receiver_signatureCaptures the signature of an action plan receiver by accepting either a file upload or a base64-encoded PNG image.
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. Use this to create a new Action Plans in Procore. Creates a new Action Plans and returns the created object on success (HTTP 201). 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 |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| plan_receiver_id | Yes | URL path parameter — action Plan Receiver ID | |
| 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. | |
| attachment_string | Yes | JSON request body field — base64 encoded string representing PNG image of signature |