action thenounproject_get_user_collection { label: "Get user collection" description: "Returns a single collection associated with a user" provider: thenounproject method: GET path: "/user/{user_id}/collections/{slug}" encoding: json input: { type: "object" properties: { slug: { type: "string" } user_id: { type: "string" } } required: ["slug", "user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }