action getpostman_get_linked_relations { label: "Get linked relations" description: "This call fetches all the relations which are linked to the specified API version along with their details.\n\nThe response will contain a `relations` object which lists all the relation types which are linked to the API version. Each of the relation type will be an object which details the relations of this type. \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}/relations" encoding: json output: { type: "object" properties: { relations: { type: "object" properties: { contracttest: { type: "object" properties: { "2a9b8fa8-88b7-4b86-8372-8e3f6f6e07f2": { type: "object" properties: { id: { type: "string" } name: { type: "string" } updatedAt: { type: "string" } } } } } integrationtest: { type: "object" properties: { "521b0486-ab91-4d3a-9189-43c9380a0533": { type: "object" properties: { id: { type: "string" } name: { type: "string" } updatedAt: { type: "string" } } } "a236b715-e682-460b-97b6-c1db24f7612e": { type: "object" properties: { id: { type: "string" } name: { type: "string" } updatedAt: { type: "string" } } } } } mock: { type: "object" properties: { "4ccd755f-2c80-481b-a262-49b55e12f5e1": { type: "object" properties: { id: { type: "string" } name: { type: "string" } updatedAt: { type: "string" } url: { type: "string" } } } } } } } } } }