POST
PdfSigner.List
List PDF Signer templates for the account (Settings → PDF Signer). Same source as dashboard listing_of_new_pdf_signer_html: pdf_signer where user_id = owner and customer_id = 0. Page size capped at 25. Default order id DESC. Does not list customer assignments (pdf_signer_customer).
Permissions
- User must be logged in with a valid bearer token.
- Returned or changed records are limited by the user permissions, team access, folder access, and account settings.
Action
- Returns PdfSigner rows as JSON.
- Supports the documented filters and paging fields.
- List responses are capped at 25 rows per call.
Push Service
No push is sent because this function only reads data or returns helper information.
Automation
No automation is run for this function.
Special Instructions
- Org templates only (customer_id = 0). To assign a template to a customer and get a sign link, use PdfSigner.Send.
- template_sign_link on each row uses {hashed_id} placeholder for customer hex id (Settings copy-link style).
Required Parameters
No body parameters are required for this function.
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
searchpost | string | Contract | Search template name. Aliases: name, filter_data, search[value]. |
statuspost | int | 1 | Filter by status when the column exists. |
startpost | int | 0 | First row offset. Alias: offset. |
limitpost | int | 25 | Maximum rows. Values above 25 are capped. Aliases: length, per_page. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/PdfSigner.List",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"limit": "25"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/PdfSigner.List",
"url_domain": "https:\/\/{domain}\/app\/PdfSigner.List"
}Endpoint
POST /app/PdfSigner.List
POST https://{user}.bull36.com/app/PdfSigner.List
POST https://{domain}/app/PdfSigner.ListSample Output
{
"success": 1,
"count": 1,
"recordsTotal": 1,
"recordsFiltered": 1,
"start": 0,
"limit": 25,
"data": [
{
"id": 12,
"pdf_signer_id": 12,
"data_id": 12,
"name": "Service agreement",
"original_filename": "agreement.pdf",
"filename": "page1.jpg,page2.jpg",
"field_position": [],
"pdf_total_page": 2,
"signature_total": 1,
"language": "he",
"add_stamp": 0,
"status": 1,
"customer_id": 0,
"template_sign_link": "https:\/\/user.bull36.com\/dashboard\/user\/document-sign\/MTI%3D\/{hashed_id}"
}
]
}Count Only
Use the matching count route with the same filters when the UI only needs total rows for paging.
{
"url": "\/app\/PdfSigner.Count",
"url_user": "https:\/\/{user}.bull36.com\/app\/PdfSigner.Count",
"url_domain": "https:\/\/{domain}\/app\/PdfSigner.Count",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": [],
"sample_output": {
"success": 1,
"count": 123
},
"notes": {
"count": "Use the matching count route when available, or count returned rows.",
"max_limit": 25
}
}Count JavaScript
const token = 'YOUR TOKEN';
const body = new URLSearchParams();
const res = await fetch('https://{domain}/app/PdfSigner.Count', {
method: 'POST',
headers: { Authorization: `Bearer ${token}` },
body
});
const data = await res.json();
console.log(data.count);JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ limit: '25' });
const res = await fetch('/app/PdfSigner.List', {
method: 'POST',
headers: { Authorization: 'Bearer ' + token },
body
});
const data = await res.json();
console.log(data.count, data.data);Error Example
{
"success": "0",
"error": "bearer_token_required",
"message": "Authorization bearer token is required. Send header: Authorization: Bearer YOUR TOKEN"
}