List Combined Submissions
List all combined submissions
HTTP Request
- List all combined submissions for your account:
GET https://api.docspring.com/api/v1/combined_submissions
Authentication
You must send an Authorization
header with the value Basic
followed by base 64 encoded token_id:token_secret
.
For example: Authorization: Basic dG9rZW5faWQ6dG9rZW5fc2VjcmV0Cg==
See the Authentication documentation for more information.
Parameters
per_page
- The number of combined submissions to return per page. Defaults to 50. (Min: 1, Max: 50)page
- The page number to return. Defaults to 1.
Example Response
[
{
"id": "com_000000000000000001",
"state": "pending",
"expired": false,
"expires_at": null,
"processed_at": null,
"submission_ids": ["sub_000000000000000001", "sub_000000000000000002"],
"source_pdfs": [],
"metadata": {
"foo": 123,
"bar": "baz"
},
"password": "p@ssword",
"pdf_hash": null,
"download_url": null,
"actions": []
}
]