PlantScanner
HomeSobre a PlantScanner
HomeSobre a PlantScanner
  1. Ordens de Produção
  • Developers
  • O que são as propriedades?
  • SKUs e Insumos
    • SKUs e Insumos
    • Gets all materials.
      GET
    • Synchronize materials batch between customer ERP and PlantScanner bases.
      POST
  • Ordens de Produção
    • Ordens de Produção ( Ordens de Trabalho )
    • Gets work orders that have been planned or executed between the specified dates or by the work order code.
      GET
    • Gets work orders that with production details
      GET
    • Synchronize work orders batch between customer ERP and PlantScanner bases.
      POST
    • Synchronize work orders batch current execution.
      POST
    • Synchronize work order properties data
      POST
    • Synchronize work orders batch planning dates.
      POST
  • Estoque
    • Estoque
    • Synchronize materials inventories between customer ERP and PlantScanner bases.
      POST
  • Alertas de Produção
    • Alertas de Produção
    • Synchronize work orders batch between customer ERP and PlantScanner bases.
      GET
  • Tempos de Mão de Obra
    • Tempos de Mão de Obra
    • Get employee logged hours with work order info if one was in execution.
      GET
  • Inspeções de Qualidade
    • Inspeções de Qualidade
    • Gets inspections that have been planned or executed between the specified dates or by the work order code.
      GET
    • Synchronize inspections batch between customer ERP and PlantScanner bases.
      POST
    • Synchronize inspections batch current execution.
      POST
    • Synchronize work order properties data
      POST
  • Processos de Inspeção
    • Processos de Inspeção
    • Gets all inspections processes
    • Synchronize inspection processes batch between customer ERP and PlantScanner bases.
  • Listas de Qualidade
    • Listas de Qualidade
    • Gets work orders checks that have been planned or executed between the specified dates or by the work order code.
  • Lotes Consumidos
    • Lotes Consumidos
    • Synchronize work orders batch between customer ERP and PlantScanner bases.
    • Sync consumed raw material quantity based on updated quantity in work order.
  • Histórico de Ordens
    • Synchronize work orders batch between customer ERP and PlantScanner bases.
  • Estações de Trabalho
    • Estações de Trabalho
    • Gets work stations with shifts and area.
  1. Ordens de Produção

Gets work orders that with production details

GET
/api/v1/WorkOrders/production
WorkOrders
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.plantscanner.io/api/v1/WorkOrders/production'
Response Response Example
200 - Exemplo 1
{
    "workOrders": [
        {
            "id": 0,
            "code": "string",
            "workOrderGrouper": "string",
            "operationCode": "string",
            "status": "Undefined",
            "requestedQuantity": 0,
            "producedQuantityLogs": [
                {
                    "producedGoodQuantity": 0,
                    "producedBadQuantity": 0,
                    "lastUpdate": "2019-08-24T14:15:22Z"
                }
            ]
        }
    ]
}

Requisição

Authorization
Adicionar o parâmetro
Authorization
a Cabeçalhos
, cujo valor é concatenar o Token após o Bearer.
Exemplo:
Authorization: Bearer ********************
Parâmetros Query
Code
string 
opcional
OperationCode
string 
opcional
BeginPlanned
string <date-time>
opcional
EndPlanned
string <date-time>
opcional
BeginExecution
string <date-time>
opcional
EndExecution
string <date-time>
opcional
LastUpdatedBegin
string <date-time>
opcional
LastUpdatedEnd
string <date-time>
opcional

Respostas

🟢200OK
application/json
work orders in defined interval with production logs
Body
workOrders
array[object (PlantScanner.API.Application.Boundaries.GetWorkOrders_ResultWorkOrderProduction) {7}] 
opcional
id
integer <int32>
opcional
code
string 
opcional
workOrderGrouper
string 
opcional
operationCode
string 
opcional
status
enum<string> 
opcional
Valores permitidos:
UndefinedReadyToScheduleExecutionPlannedInExecutionExecutedPaused
requestedQuantity
number <double>
opcional
producedQuantityLogs
array[object (PlantScanner.API.Application.Boundaries.GetWorkOrders_ResultProducedQuantityLog) {3}] 
opcional
🟠412412
🔴500Erro do servidor
Página anterior
Gets work orders that have been planned or executed between the specified dates or by the work order code.
Próxima página
Synchronize work orders batch between customer ERP and PlantScanner bases.
Built with