action getpostman_create_afork { label: "Create a Fork" description: "This endpoint allows you to create a fork from an existing collection.\n\nOn successful creation of the collection, the response returns the collection `name`, `id`, `uid` along with `fork` information.\n\nYou can also specify the context of a workspace to fork a collection in by passing the `workspace` as a query param.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: POST path: "/collections/fork/{collection_uid}" encoding: json input: { type: "object" properties: { name: { type: "string" } workspace: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }