Create Action Plan Approver Signature
create_action_plan_approver_signatureAdd a signature to an action plan approver in Procore by providing a project ID, approver ID, and an attachment or base64-encoded PNG image.
Instructions
Create a single Action Plan Approver 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_approver_id, attachment, attachment_string. Procore API: Project Management > Action Plans. Endpoint: POST /rest/v1.0/projects/{project_id}/action_plans/plan_approvers/{plan_approver_id}/signature
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| plan_approver_id | Yes | URL path parameter — action Plan Approver 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 |