action vimeo_get_video_credit { label: "Get a specific credited user in a video" provider: vimeo method: GET path: "/videos/{video_id}/credits/{credit_id}" encoding: json input: { type: "object" properties: { credit_id: { type: "number" } video_id: { type: "number" } } required: ["credit_id", "video_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }