action atlassian_get_project_roles { label: "Get project roles for project" description: "Returns a list of [project roles](https://confluence.atlassian.com/x/3odKLg) for the project returning the name and self URL for each role.\n\nNote that all project roles are shared with all projects in Jira Cloud. See [Get all project roles](#api-rest-api-3-role-get) for more information.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** *Administer Projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for any project on the site or *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: atlassian method: GET path: "/rest/api/3/project/{projectIdOrKey}/role" encoding: json input: { type: "object" properties: { projectIdOrKey: { type: "string" } } required: ["projectIdOrKey"] additionalProperties: false } output: { type: "object" } }