action getpostman_get_test_suite_relations { label: "Get test suite relations" description: "This call fetches all the relations by type which are linked to the specified API version along with their details.\n\nThe response will contain an array with key `{{relationType}}`. Each of the item will consist of all the details related each of the relation.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/apis/{apiId}/versions/{apiVersionId}/testsuite" encoding: json output: { type: "object" properties: { testsuite: { type: "array" items: { type: "object" properties: { collectionId: { type: "string" } id: { type: "string" } name: { type: "string" } updatedAt: { type: "string" } } } } } } }