tag-values.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "get": {
  3. "tags": ["Projects"],
  4. "description": "Return a list of values associated with this key. The `query`\nparameter can be used to to perform a \"contains\" match on\nvalues. \n\nWhen [paginated](/api/pagination) can return at most 1000 values.",
  5. "operationId": "List a Tag's Values",
  6. "parameters": [
  7. {
  8. "name": "organization_slug",
  9. "in": "path",
  10. "description": "The slug of the organization.",
  11. "required": true,
  12. "schema": {
  13. "type": "string"
  14. }
  15. },
  16. {
  17. "name": "project_slug",
  18. "in": "path",
  19. "description": "The slug of the project.",
  20. "required": true,
  21. "schema": {
  22. "type": "string"
  23. }
  24. },
  25. {
  26. "name": "key",
  27. "in": "path",
  28. "description": "The tag key to look up.",
  29. "required": true,
  30. "schema": {
  31. "type": "string"
  32. }
  33. }
  34. ],
  35. "responses": {
  36. "200": {
  37. "description": "Success",
  38. "content": {
  39. "application/json": {
  40. "schema": {
  41. "type": "array",
  42. "items": {
  43. "type": "object",
  44. "required": ["name"],
  45. "properties": {
  46. "name": {
  47. "type": "string"
  48. }
  49. }
  50. }
  51. },
  52. "example": [
  53. {
  54. "name": "mint_choco"
  55. }
  56. ]
  57. }
  58. }
  59. },
  60. "403": {
  61. "description": "Forbidden"
  62. }
  63. },
  64. "security": [
  65. {
  66. "auth_token": ["project:read"]
  67. }
  68. ]
  69. }
  70. }