action getpostman_get_all_ap_is { label: "Get all APIs" description: "This call fetches all the APIs present in the specified workspace\n\nResponse contains an array named `apis` which would contain all the details of APIs present in the workspace.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/apis" encoding: json input: { type: "object" properties: { createdBy: { type: "string" } description: { type: "string" } direction: { type: "string" } isPublic: { type: "string" } name: { type: "string" } since: { type: "string" } sort: { type: "string" } summary: { type: "string" } until: { type: "string" } updatedBy: { type: "string" } workspace: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }