action getpostman_all_collections { label: "All Collections" description: "The `/collections` endpoint returns a list of all [collections](https://www.getpostman.com/docs/collections) that are accessible by you. The list includes your own collections and the collections that you have subscribed to.\n\nThe response contains an array of collection information containing the `name`, `id`, `owner` and `uid` of each collection.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/collections" encoding: json output: { type: "object" properties: { collections: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } owner: { type: "string" } uid: { type: "string" } } } } } } }