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