For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status PageContact sales
HomePlatform OverviewAPI ReferenceIntegration GuidesUI GuidesChangelog
HomePlatform OverviewAPI ReferenceIntegration GuidesUI GuidesChangelog
  • Using the API
    • API overview
    • API responses
    • Postman collection
  • API reference
          • POSTCreate template
          • GETGenerate boarding link
          • GETGet template
          • GETList templates
          • PUTUpdate template
          • DELDelete template
LogoLogo
Status PageContact sales
API referencePay Ops endpointsBoardingTemplates

List templates

GET
/Query/templates/:orgId
GET
/api/Query/templates/:orgId
$curl -G https://api-sandbox.payabli.com/api/Query/templates/123 \
> -H "requestToken: <apiKey>" \
> -d fromRecord=251 \
> -d limitRecord=0 \
> -d sortBy=desc(field_name)
1{
2 "records": [
3 {
4 "addPrice": true,
5 "boardingLinks": [
6 {
7 "id": 91
8 }
9 ],
10 "createdAt": "2022-07-01T15:00:01Z",
11 "idTemplate": 1000000,
12 "isRoot": false,
13 "orgParentName": "PropertyManager Pro",
14 "recipientEmailNotification": true,
15 "resumable": false,
16 "templateCode": "templateCode",
17 "templateDescription": "templateDescription",
18 "templateTitle": "templateTitle",
19 "usedBy": 1
20 }
21 ],
22 "summary": {
23 "pageIdentifier": "null",
24 "pageSize": 20,
25 "totalAmount": 77.22,
26 "totalNetAmount": 77.22,
27 "totalPages": 2,
28 "totalRecords": 2
29 }
30}

Retrieves a list of boarding templates for an organization. Use filters to limit results. You can’t make a request that includes filters from the API console in the documentation. The response will not be filtered. Instead, copy the request, remove parameters= and run the request in a different client.

Was this page helpful?
Previous

Update template

Next

Authentication

requestTokenstring
API Key authentication via header

Path parameters

orgIdintegerRequired
The numeric identifier for organization, assigned by Payabli.

Query parameters

fromRecordintegerOptionalDefaults to 0
The number of records to skip before starting to collect the result set.
limitRecordintegerOptionalDefaults to 20

Max number of records to return for the query. Use 0 or negative value to return all records.

parametersmap from strings to optional stringsOptional
Collection of field names, conditions, and values used to filter the query. <Info> **You must remove `parameters=` from the request before you send it, otherwise Payabli will ignore the filters.** Because of a technical limitation, you can't make a request that includes filters from the API console on this page. The response won't be filtered. Instead, copy the request, remove `parameters=` and run the request in a different client. For example: --url https://api-sandbox.payabli.com/api/Query/transactions/org/236?parameters=totalAmount(gt)=1000&limitRecord=20 should become: --url https://api-sandbox.payabli.com/api/Query/transactions/org/236?totalAmount(gt)=1000&limitRecord=20 </Info> See [Filters and Conditions Reference](/developer-guides/reporting-filters-and-conditions-reference) for help. List of field names accepted: - createdAt (gt, ge, lt, le, eq, ne) - title (ct, nct) - description (ct, nct) - code (ct, nct) - orgParentname (ct, nct) List of comparison accepted - enclosed between parentheses: - eq or empty => equal - gt => greater than - ge => greater or equal - lt => less than - le => less or equal - ne => not equal - ct => contains - nct => not contains - in => inside array - nin => not inside array List of parameters accepted: - limitRecord : max number of records for query (default="20", "0" or negative value for all) - fromRecord : initial record in query Example: title(ct)=hoa return all records with title containing "hoa"
sortBystringOptional

The field name to use for sorting results. Use desc(field_name) to sort descending by field_name, and use asc(field_name) to sort ascending by field_name.

Response

Success
recordslist of objects
summaryobject

Errors

400
Bad Request Error
401
Unauthorized Error
500
Internal Server Error
503
Service Unavailable Error

Collection of field names, conditions, and values used to filter the query.

You must remove parameters= from the request before you send it, otherwise Payabli will ignore the filters.

Because of a technical limitation, you can’t make a request that includes filters from the API console on this page. The response won’t be filtered. Instead, copy the request, remove parameters= and run the request in a different client.

For example:

—url https://api-sandbox.payabli.com/api/Query/transactions/org/236?parameters=totalAmount(gt)=1000&limitRecord=20

should become:

—url https://api-sandbox.payabli.com/api/Query/transactions/org/236?totalAmount(gt)=1000&limitRecord=20

See Filters and Conditions Reference for help.

List of field names accepted:

  • createdAt (gt, ge, lt, le, eq, ne)
  • title (ct, nct)
  • description (ct, nct)
  • code (ct, nct)
  • orgParentname (ct, nct)

List of comparison accepted - enclosed between parentheses:

  • eq or empty => equal
  • gt => greater than
  • ge => greater or equal
  • lt => less than
  • le => less or equal
  • ne => not equal
  • ct => contains
  • nct => not contains
  • in => inside array
  • nin => not inside array

List of parameters accepted:

  • limitRecord : max number of records for query (default=“20”, “0” or negative value for all)
  • fromRecord : initial record in query

Example: title(ct)=hoa return all records with title containing “hoa”