action beezup_get_order_change_reporting_v3 { label: "Get the order change reporting" description: "This operation will help you to know the status of your order change operation" provider: beezup method: GET path: "/orders/v3/{marketplaceTechnicalCode}/{accountId}/{beezUPOrderId}/history/{orderChangeExecutionUUID}" encoding: json input: { type: "object" properties: { accountId: { type: "integer" format: "int32" } beezUPOrderId: { type: "string" format: "uuid" } marketplaceTechnicalCode: { type: "string" } orderChangeExecutionUUID: { type: "string" } } required: ["accountId", "beezUPOrderId", "marketplaceTechnicalCode", "orderChangeExecutionUUID"] additionalProperties: false } output: { type: "object" description: "The reporting related to a change order operation" properties: { changeOrderType: { type: "string" } creationUtcDate: { type: "string" format: "date-time" description: "The creation UTC date of the execution" } details: { type: "object" } errorMessage: { type: "string" description: "The error message during the execution" } executionUUID: { type: "string" format: "uuid" description: "The execution identifier" } ipAddress: { type: "string" description: "The IP address who request this operation" } lastUpdateUtcDate: { type: "string" format: "date-time" description: "The last update UTC date of the execution" } processingStatus: { type: "string" description: "The processing status of the execution" } sourceType: { type: "string" description: "Indicates the origin of the operation" enum: ["Api", "Go"] } sourceUserId: { type: "string" format: "guid" description: "The user identifier" } sourceUserName: { type: "string" } testMode: { type: "boolean" description: "This operation was a test" } } } }