The Signing Attachment object
Attributes
Unique identifier for the object.
ISO 8601 timestamp of when the object was created.
ISO 8601 timestamp of when the object was last updated.
Default: link
{
"id": "signing-attachment_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"signing_document_id": "signing_document_id_example",
"label": "label_example",
"attachment_type": "link",
"data": "data_example"
} /api/signing/signing-attachment/{id} Retrieve a signing attachment
Retrieves the details of an existing signing attachment. Supply the unique signing attachment ID that was returned from a previous request.
Path parameters
The identifier of the signing attachment to retrieve.
Returns
Returns the signing attachment object if a valid identifier was provided.
curl https://api.overplane.dev/api/signing/signing-attachment/signing-attachment_abc123 \
-H "Authorization: Bearer sk_test_..." {
"id": "signing-attachment_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"signing_document_id": "signing_document_id_example",
"label": "label_example",
"attachment_type": "link",
"data": "data_example"
} /api/signing/signing-attachment List all signing attachments
Returns a list of signing attachments. The results are sorted by creation date, with the most recently created appearing first.
Query parameters
Maximum number of objects to return. Default: 20.
Number of objects to skip for pagination. Default: 0.
Returns
A paginated list of signing attachment objects.
curl https://api.overplane.dev/api/signing/signing-attachment \
-H "Authorization: Bearer sk_test_..." {
"data": [
{
"id": "signing-attachment_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"signing_document_id": "signing_document_id_example",
"label": "label_example",
"attachment_type": "link",
"data": "data_example"
}
],
"has_more": false,
"total": 1
} /api/signing/signing-attachment Create a signing attachment
Creates a new signing attachment object.
Body parameters
Default: link
Returns
Returns the newly created signing attachment object if the call succeeded.
curl https://api.overplane.dev/api/signing/signing-attachment \
-H "Authorization: Bearer sk_test_..." \
-X POST \
-H "Content-Type: application/json" \
-d '{"signing_document_id":"signing_document_id_example","label":"label_example","data":"data_example"}' {
"id": "signing-attachment_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"signing_document_id": "signing_document_id_example",
"label": "label_example",
"attachment_type": "link",
"data": "data_example"
} /api/signing/signing-attachment/{id} Update a signing attachment
Updates the specified signing attachment by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Path parameters
The identifier of the signing attachment to update.
Body parameters
Default: link
Returns
Returns the updated signing attachment object.
curl https://api.overplane.dev/api/signing/signing-attachment/signing-attachment_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X PATCH \
-H "Content-Type: application/json" \
-d '{"signing_document_id":"signing_document_id_example","label":"label_example"}' {
"id": "signing-attachment_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"signing_document_id": "signing_document_id_example",
"label": "label_example",
"attachment_type": "link",
"data": "data_example"
} /api/signing/signing-attachment/{id} Delete a signing attachment
Permanently deletes a signing attachment. This cannot be undone.
Path parameters
The identifier of the signing attachment to delete.
Returns
Returns a confirmation that the signing attachment has been deleted.
curl https://api.overplane.dev/api/signing/signing-attachment/signing-attachment_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X DELETE {
"id": "signing-attachment_abc123",
"deleted": true
}