1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "get": {
- "tags": ["Events"],
- "description": "Returns details for given tag key related to an issue. \n\nWhen [paginated](/api/pagination) can return at most 1000 values.",
- "operationId": "List a Tag's Values Related to an Issue",
- "parameters": [
- {
- "name": "issue_id",
- "in": "path",
- "description": "The ID of the issue to retrieve.",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "key",
- "in": "path",
- "description": "The tag key to look the values up for.",
- "required": true,
- "schema": {
- "type": "string"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "Success",
- "content": {
- "application/json": {
- "schema": {
- "type": "array",
- "items": {
- "type": "object",
- "required": ["key", "value"],
- "properties": {
- "key": {
- "type": "string"
- },
- "value": {
- "type": "string"
- }
- }
- }
- },
- "example": [
- {
- "key": "ice_cream",
- "value": "mint_choco"
- }
- ]
- }
- }
- },
- "403": {
- "description": "Forbidden"
- }
- },
- "security": [
- {
- "auth_token": ["event:read"]
- }
- ]
- }
- }
|