You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the resources in the API are paginated. These resources contain a `pagination.next.cursor` property when there is a next page. The cursor can be passed to query to fetch the next page. Here's an example usage:
* <i class=\"far fa-money-bill-alt text-primary\"></i> <span class=\"text-primary\">Billable</span> Returns a paginated records list for the account. Only records the user has access to are returned.
1040
957
* @summary Get all account records.
1041
958
* @param {number} [limit] Max number of results to return
1042
-
* @param {string} [cursor] Continuation cursor for paging (will automatically be set)
959
+
* @param {Cursor} [cursor] Continuation cursor for paging (will automatically be set)
1043
960
* @param {string} [filter] Filter to search records by. This is a case insensitive search through every text field.
1044
961
* @param {string} [status] Filter records by their current status.
* @param {string} [userId] The user to check permissions on
1292
1209
* @param {string} [resourceUri] The top level uri path of a resource to query for. Will only match explicit or collection resource sub-resources. Will not partial match resource names.
1293
1210
* @param {number} [limit] Max number of results to return
1294
-
* @param {string} [cursor] Continuation cursor for paging (will automatically be set)
1211
+
* @param {Cursor} [cursor] Continuation cursor for paging (will automatically be set)
1295
1212
* @param {string} [permission] A required ALLOW action to check for. Resources a user does not have this permission will not be returned.
* <i class=\"far fa-money-bill-alt text-primary\"></i> <span class=\"text-primary\">Billable</span> Get an Authress signed JWT access token using with userId as the sub. Additionally, can be configured to limit the permissions for this particular token and the length of time the token is valid. Token validation is real-time, so deleted tokens are restricted from being used as soon as they are deleted. This gives full control to the user and client creating the token. Client must have access to impersonating the user in order to generate tokens on their behalf.
1301
1218
* @summary Request a user token with additional configuration
0 commit comments