action thenounproject_get_collection_icons_by_slug { label: "Get collection icons by slug" description: "Returns a list of icons associated with a collection" provider: thenounproject method: GET path: "/collection/{slug}/icons" encoding: json input: { type: "object" properties: { limit: { type: "string" } offset: { type: "string" } page: { type: "string" } slug: { type: "string" } } required: ["slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }