{
"openapi" : "3.0.1",
"info" : {
"title" : "IDP - IDP-PO-CD656092-BurlingtonTextiles - 1.0.0",
"version" : "v1"
},
"servers" : [ {
"url" : "https://idp-rt.us-east-1.anypoint.mulesoft.com"
} ],
"paths" : {
"/api/v1/organizations/eca25329-9592-4ff1-9054-1b08d103b991/actions/90c3e286-72b5-42ca-92d0-22f86ea8d766/versions/1.0.0/executions" : {
"post" : {
"description" : "Submits an action version document execution",
"operationId" : "postDocumentActionExecution",
"requestBody" : {
"content" : {
"multipart/form-data" : {
"schema" : { }
}
}
},
"responses" : {
"201" : {
"description" : "Created",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/DocumentExecutionPostResponse"
}
}
}
}
},
"security" : [ {
"bearerAuth" : [ ]
} ]
}
},
"/api/v1/organizations/eca25329-9592-4ff1-9054-1b08d103b991/actions/90c3e286-72b5-42ca-92d0-22f86ea8d766/versions/1.0.0/executions/{executionId}" : {
"get" : {
"description" : "Gets a document execution status",
"operationId" : "getDocumentActionExecution",
"parameters" : [ {
"name" : "executionId",
"in" : "path",
"required" : true,
"schema" : {
"type" : "string"
}
} ],
"responses" : {
"200" : {
"description" : "Success",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/DocumentExecutionGetResponse"
}
}
}
}
},
"security" : [ {
"bearerAuth" : [ ]
} ]
}
}
},
"components" : {
"schemas" : {
"Page" : {
"type" : "object",
"properties" : {
"tables" : {
"type" : "object",
"properties" : {
"table1" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"unitPrice" : {
"$ref" : "#/components/schemas/Field"
},
"quantity" : {
"$ref" : "#/components/schemas/Field"
},
"productCode" : {
"$ref" : "#/components/schemas/Field"
},
"price" : {
"$ref" : "#/components/schemas/Field"
},
"description" : {
"$ref" : "#/components/schemas/Field"
}
}
}
}
}
},
"page" : {
"type" : "string"
},
"fields" : {
"type" : "object",
"properties" : {
"total" : {
"$ref" : "#/components/schemas/Field"
},
"shipVia" : {
"$ref" : "#/components/schemas/Field"
},
"purchaseOrderDate" : {
"$ref" : "#/components/schemas/Field"
},
"subtotal" : {
"$ref" : "#/components/schemas/Field"
},
"purchaseOrderNumber" : {
"$ref" : "#/components/schemas/Field"
},
"parties" : {
"type" : "object",
"properties" : {
"vendor" : {
"type" : "object",
"properties" : { }
},
"billTo" : {
"type" : "object",
"properties" : { }
},
"buyer" : {
"type" : "object",
"properties" : {
"country" : {
"$ref" : "#/components/schemas/Field"
},
"zipCode" : {
"$ref" : "#/components/schemas/Field"
},
"address" : {
"$ref" : "#/components/schemas/Field"
},
"headerName" : {
"$ref" : "#/components/schemas/Field"
},
"city" : {
"$ref" : "#/components/schemas/Field"
},
"street" : {
"$ref" : "#/components/schemas/Field"
},
"name" : {
"$ref" : "#/components/schemas/Field"
},
"headerAddress" : {
"$ref" : "#/components/schemas/Field"
},
"headerPhone" : {
"$ref" : "#/components/schemas/Field"
},
"state" : {
"$ref" : "#/components/schemas/Field"
},
"headerUrl" : {
"$ref" : "#/components/schemas/Field"
},
"addressBlock" : {
"$ref" : "#/components/schemas/Field"
}
}
},
"shipTo" : {
"type" : "object",
"properties" : {
"country" : {
"$ref" : "#/components/schemas/Field"
},
"zipCode" : {
"$ref" : "#/components/schemas/Field"
},
"address" : {
"$ref" : "#/components/schemas/Field"
},
"city" : {
"$ref" : "#/components/schemas/Field"
},
"street" : {
"$ref" : "#/components/schemas/Field"
},
"name" : {
"$ref" : "#/components/schemas/Field"
},
"state" : {
"$ref" : "#/components/schemas/Field"
},
"addressBlock" : {
"$ref" : "#/components/schemas/Field"
}
}
}
}
},
"tax" : {
"$ref" : "#/components/schemas/Field"
},
"deliveryDate" : {
"$ref" : "#/components/schemas/Field"
},
"signatures" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Field"
}
}
}
},
"prompts" : {
"type" : "object",
"properties" : {
"shippingHandlingCost" : {
"$ref" : "#/components/schemas/Prompt"
},
"customerNumber" : {
"$ref" : "#/components/schemas/Prompt"
}
}
}
}
},
"Field" : {
"type" : "object",
"properties" : {
"confidenceScore" : {
"type" : "number"
},
"value" : {
"type" : "string"
},
"geometry" : {
"type" : "object",
"properties" : {
"width" : {
"type" : "number"
},
"top" : {
"type" : "number"
},
"height" : {
"type" : "number"
},
"left" : {
"type" : "number"
}
}
}
}
},
"Prompt" : {
"type" : "object",
"properties" : {
"prompt" : {
"type" : "string"
},
"answer" : {
"$ref" : "#/components/schemas/Field"
},
"source" : {
"type" : "string"
}
}
},
"DocumentExecutionPostResponse" : {
"type" : "object",
"properties" : {
"status" : {
"type" : "string"
},
"id" : {
"type" : "string"
},
"documentName" : {
"type" : "string"
}
}
},
"DocumentExecutionGetResponse" : {
"type" : "object",
"properties" : {
"pages" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Page"
}
},
"id" : {
"type" : "string"
},
"documentName" : {
"type" : "string"
},
"prompts" : {
"type" : "object",
"properties" : { }
},
"status" : {
"type" : "string"
}
}
}
},
"securitySchemes" : {
"bearerAuth" : {
"type" : "oauth2",
"flows" : {
"clientCredentials" : {
"tokenUrl" : "https://anypoint.mulesoft.com/accounts/api/v2/oauth2/token",
"scopes" : { }
}
}
}
}
}
}