|
1 | 1 | openapi: 3.0.3 |
2 | 2 | info: |
3 | 3 | title: Portal API |
4 | | - version: 3.3.2 |
| 4 | + version: 3.3.3 |
5 | 5 | description: Portal API |
6 | 6 | contact: |
7 | 7 | name: Kong |
8 | 8 | url: 'https://cloud.konghq.com' |
9 | | - x-oas-source: kong/platform-api@b86de17dd121406f9a94d62b1ca4bd412d216992 |
10 | | - x-oas-source-link: 'https://github.com/Kong/platform-api/commit/b86de17dd121406f9a94d62b1ca4bd412d216992' |
| 9 | + x-oas-source: kong/platform-api@1f49f503deacae7f5c273d918393c1bcb44df6f2 |
| 10 | + x-oas-source-link: 'https://github.com/Kong/platform-api/commit/1f49f503deacae7f5c273d918393c1bcb44df6f2' |
11 | 11 | servers: |
12 | 12 | - url: 'https://custom.example.com' |
13 | 13 | description: Production |
@@ -332,6 +332,10 @@ paths: |
332 | 332 | - $ref: '#/components/parameters/FilterByNameContains' |
333 | 333 | - $ref: '#/components/parameters/FilterByAuthStrategyEquality' |
334 | 334 | - $ref: '#/components/parameters/FilterByAuthStrategyEqualityShort' |
| 335 | + - $ref: '#/components/parameters/FilterByTeamIdEquality' |
| 336 | + - $ref: '#/components/parameters/FilterByTeamIdEqualityShort' |
| 337 | + - $ref: '#/components/parameters/FilterByTeamIdNotEquals' |
| 338 | + - $ref: '#/components/parameters/FilterByTeamIdOneOf' |
335 | 339 | responses: |
336 | 340 | '200': |
337 | 341 | $ref: '#/components/responses/ListApplications' |
@@ -1332,6 +1336,48 @@ components: |
1332 | 1336 | - pending |
1333 | 1337 | - rejected |
1334 | 1338 | - revoked |
| 1339 | + FilterByTeamIdEquality: |
| 1340 | + name: 'filter[team_id][eq]' |
| 1341 | + description: | |
| 1342 | + Filter by the team that owns the application. Use a team UUID or the literal string `null` for individually owned apps (e.g. `filter[team_id][eq]=null`). |
| 1343 | + in: query |
| 1344 | + required: false |
| 1345 | + schema: |
| 1346 | + type: string |
| 1347 | + format: uuid |
| 1348 | + example: 5be86298-147b-45ab-bfaf-a1bff97dce39 |
| 1349 | + nullable: true |
| 1350 | + FilterByTeamIdEqualityShort: |
| 1351 | + name: 'filter[team_id]' |
| 1352 | + description: | |
| 1353 | + Filter by the team that owns the application (short-hand). Use a team UUID or the literal string `null` for individually owned apps (e.g. `filter[team_id]=null`). |
| 1354 | + in: query |
| 1355 | + required: false |
| 1356 | + schema: |
| 1357 | + type: string |
| 1358 | + format: uuid |
| 1359 | + example: 5be86298-147b-45ab-bfaf-a1bff97dce39 |
| 1360 | + nullable: true |
| 1361 | + FilterByTeamIdNotEquals: |
| 1362 | + name: 'filter[team_id][neq]' |
| 1363 | + description: | |
| 1364 | + Filter by excluding a team. Use the literal string `null` to get only team-owned apps (excludes individually owned) (e.g. `filter[team_id][neq]=null`). |
| 1365 | + in: query |
| 1366 | + required: false |
| 1367 | + schema: |
| 1368 | + type: string |
| 1369 | + format: uuid |
| 1370 | + example: null |
| 1371 | + nullable: true |
| 1372 | + FilterByTeamIdOneOf: |
| 1373 | + name: 'filter[team_id][oeq]' |
| 1374 | + description: | |
| 1375 | + Filter by apps owned by any of the given teams (comma-separated UUIDs). |
| 1376 | + in: query |
| 1377 | + required: false |
| 1378 | + schema: |
| 1379 | + type: string |
| 1380 | + example: '5be86298-147b-45ab-bfaf-a1bff97dce39,7ce96398-247b-45ab-bfaf-b2c008e8f6e4' |
1335 | 1381 | FilterByTitleContains: |
1336 | 1382 | name: 'filter[title][contains]' |
1337 | 1383 | description: Filter by contains comparison of the title property with a supplied substring |
|
0 commit comments