action gettyimages_get_v3_orders_id { label: "Get order metadata" description: "This endpoint returns detailed order metadata for a specified order.\nUse of this endpoint requires configuration changes to your API key. \n\nYou'll need an API key and access token to use this resource." provider: gettyimages method: GET path: "/v3/orders/{id}" encoding: json input: { type: "object" properties: { "Accept-Language": { type: "string" description: "Provide a header to specify the language of result values. Supported values: cs (iStock only), de, en-GB, en-US, es, fi (iStock only), fr, hu (iStock only), id (iStock only), it, ja, ko (creative assets only), nl, pl (creative assets only), pt-BR, pt-PT, ro (iStock only), ru (creative assets only), sv, th (iStock only), tr, uk (iStock only), vi (iStock only), zh-HK (creative assets only)." } id: { type: "integer" format: "int32" description: "An order id." } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { assets: { type: "array" items: { type: "object" properties: { id: { type: "string" } } additionalProperties: false } } end_client: { type: "string" } id: { type: "string" } invoice_number: { type: "string" } notes: { type: "object" properties: { licensee_name: { type: "string" } ordered_by: { type: "string" } project_title: { type: "string" } purchase_order_number: { type: "string" } } additionalProperties: false } order_date: { type: "string" format: "date-time" } } additionalProperties: false } }