@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
25 lines (24 loc) • 878 B
text/typescript
export interface GetOrganizations {
/**
* The ID of the service desk from which the organization list will be returned. This can alternatively be a [project
* identifier.](#project-identifiers)
*/
serviceDeskId: string;
/**
* The starting index of the returned objects. Base index: 0. See the
* [Pagination](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#pagination) section for more
* details.
*/
start?: number;
/**
* The maximum number of items to return per page. Default: 50. See the
* [Pagination](https://developer.atlassian.com/cloud/jira/service-desk/rest/intro/#pagination) section for more
* details.
*/
limit?: number;
/**
* The account ID of the user, which uniquely identifies the user across all Atlassian products. For example,
* _5b10ac8d82e05b22cc7d4ef5_.
*/
accountId?: string;
}