Placeholders used within data connector requests.
{{variableName}}
.
{{businessId}}
{{businessId}}
variable represents the unique ID of a business on your platform. It is crucial that this ID corresponds to the business entity, not a user, as multiple users may have access to the same business.
{{sessionToken}}
{{sessionToken}}
variable holds the current session token of the user on your platform. This token is essential for authenticating requests and can be passed either in the header or as a query parameter. Additionally, the sessionToken
should be provided as a parameter to the embedded widget.
{{fromDate}}
and {{toDate}}
{{fromDate}}
represents the start date, and the {{toDate}}
represents the end date.
{{pageLimit}}
and {{pageNumber}}
{{pageLimit}}
defines the maximum number of records per page, and {{pageNumber}}
specifies the page number being requested.
https://api.yourplatform.com/businesses/{{businessId}}/transactions
Authorization: Bearer {{sessionToken}}
?from={{fromDate}}&to={{toDate}}&limit={{pageLimit}}&page={{pageNumber}}