The Signing Audit Log 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.
{
"id": "signing-audit-log_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"signing_document_id": "signing_document_id_example",
"event_type": "event_type_example",
"data": "data_example",
"actor_name": "actor_name_example",
"actor_email": "user@example.com",
"actor_user_id": "actor_user_id_example",
"ip_address": "ip_address_example",
"user_agent": "user_agent_example"
} /api/signing/signing-audit-log/{id} Retrieve a signing audit log
Retrieves the details of an existing signing audit log. Supply the unique signing audit log ID that was returned from a previous request.
Path parameters
The identifier of the signing audit log to retrieve.
Returns
Returns the signing audit log object if a valid identifier was provided.
curl https://api.overplane.dev/api/signing/signing-audit-log/signing-audit-log_abc123 \
-H "Authorization: Bearer sk_test_..." {
"id": "signing-audit-log_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"signing_document_id": "signing_document_id_example",
"event_type": "event_type_example",
"data": "data_example",
"actor_name": "actor_name_example",
"actor_email": "user@example.com",
"actor_user_id": "actor_user_id_example",
"ip_address": "ip_address_example",
"user_agent": "user_agent_example"
} /api/signing/signing-audit-log List all signing audit logs
Returns a list of signing audit logs. 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 audit log objects.
curl https://api.overplane.dev/api/signing/signing-audit-log \
-H "Authorization: Bearer sk_test_..." {
"data": [
{
"id": "signing-audit-log_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"signing_document_id": "signing_document_id_example",
"event_type": "event_type_example",
"data": "data_example",
"actor_name": "actor_name_example",
"actor_email": "user@example.com",
"actor_user_id": "actor_user_id_example",
"ip_address": "ip_address_example",
"user_agent": "user_agent_example"
}
],
"has_more": false,
"total": 1
} /api/signing/signing-audit-log Create a signing audit log
Creates a new signing audit log object.
Body parameters
Returns
Returns the newly created signing audit log object if the call succeeded.
curl https://api.overplane.dev/api/signing/signing-audit-log \
-H "Authorization: Bearer sk_test_..." \
-X POST \
-H "Content-Type: application/json" \
-d '{"signing_document_id":"signing_document_id_example","event_type":"event_type_example"}' {
"id": "signing-audit-log_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"signing_document_id": "signing_document_id_example",
"event_type": "event_type_example",
"data": "data_example",
"actor_name": "actor_name_example",
"actor_email": "user@example.com",
"actor_user_id": "actor_user_id_example",
"ip_address": "ip_address_example",
"user_agent": "user_agent_example"
} /api/signing/signing-audit-log/{id} Update a signing audit log
Updates the specified signing audit log by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Path parameters
The identifier of the signing audit log to update.
Body parameters
Returns
Returns the updated signing audit log object.
curl https://api.overplane.dev/api/signing/signing-audit-log/signing-audit-log_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X PATCH \
-H "Content-Type: application/json" \
-d '{"signing_document_id":"signing_document_id_example","event_type":"event_type_example"}' {
"id": "signing-audit-log_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"signing_document_id": "signing_document_id_example",
"event_type": "event_type_example",
"data": "data_example",
"actor_name": "actor_name_example",
"actor_email": "user@example.com",
"actor_user_id": "actor_user_id_example",
"ip_address": "ip_address_example",
"user_agent": "user_agent_example"
} /api/signing/signing-audit-log/{id} Delete a signing audit log
Permanently deletes a signing audit log. This cannot be undone.
Path parameters
The identifier of the signing audit log to delete.
Returns
Returns a confirmation that the signing audit log has been deleted.
curl https://api.overplane.dev/api/signing/signing-audit-log/signing-audit-log_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X DELETE {
"id": "signing-audit-log_abc123",
"deleted": true
}