action bitbucket_get_repositories_workspace_repo_slug_issues_issue_id_vote { label: "Check if current user voted for an issue" description: "Check whether the authenticated user has voted for this issue.\nA 204 status code indicates that the user has voted, while a 404\nimplies they haven't." provider: bitbucket method: GET path: "/repositories/{workspace}/{repo_slug}/issues/{issue_id}/vote" encoding: json output: { type: "object" description: "Base type for most resource objects. It defines the common `type` element that identifies an object's type. It also identifies the element as Swagger's `discriminator`." required: ["type"] properties: { error: { type: "object" required: ["message"] properties: { data: { type: "object" description: "Optional structured data that is endpoint-specific." properties: {} } detail: { type: "string" } message: { type: "string" } } additionalProperties: false } type: { type: "string" } } } }