action apple_app_price_points_get_instance { label: "appPricePoints-get_instance" provider: apple method: GET path: "/v1/appPricePoints/{id}" encoding: json input: { type: "object" properties: { "fields[appPricePoints]": { type: "array" items: { type: "string" enum: ["customerPrice", "priceTier", "proceeds", "territory"] } } "fields[territories]": { type: "array" items: { type: "string" enum: ["currency"] } } include: { type: "array" items: { type: "string" enum: ["priceTier", "territory"] } } } additionalProperties: false } output: { type: "object" required: ["data", "links"] properties: { data: { type: "object" required: ["id", "links", "type"] properties: { attributes: { type: "object" properties: { customerPrice: { type: "string" } proceeds: { type: "string" } } } id: { type: "string" } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } relationships: { type: "object" properties: { priceTier: { type: "object" properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["appPriceTiers"] } } } links: { type: "object" properties: { related: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } } } territory: { type: "object" properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["territories"] } } } links: { type: "object" properties: { related: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } } } } } type: { type: "string" enum: ["appPricePoints"] } } } included: { type: "array" items: { type: "object" required: ["links", "id", "type"] properties: { attributes: { type: "object" properties: { currency: { type: "string" } } } id: { type: "string" } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } type: { type: "string" enum: ["territories"] } } } } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } } } }