UpdateProcessedPORStatus (PUT)

Overview

This Acknowledgment API allows to capture back the ERP processing status in POR Status in GEP SMART, that can be displayed to the user along with comments in case of failures.

 

URL Format: https://<Instance>.gep.com/SmartInterfaceAPI/api/Order/PORStatus

Request
{
   "model": [
      {
         "key": "string",
         "description": "string",
         "status": "string",
         "sourceSystemName": "string",
         "sourceSystemValue": "string",
         "lob": "string",
         "errorCode": "string"
      }
   ]
}

 

Response
{
   "data": {},
   "statusCode": "String",
   "errorDetails": [
      {
         "key": "string",
         "errors": [
            {
               "errorCode": "string",
               "errorDescription": "string"
            }
         ]
      }
   ],
   "successDetails": [
      {
         "key": "String"
      }
   ]
}

 

Examples

Success Scenario – Request

{
   "model": [
      {
         "key": "string",
         "description": "string",
         "status": "string",
         "sourceSystemName": "string",
         "sourceSystemValue": "string",
         "lob": "string",
         "errorCode": "string"
      }
   ]
}

Success Scenario – Response

{
   "data": null,
   "statusCode": "200",
   "errorDetails": [],
   "successDetails": [
      {
         "key": "48000061"
      }
   ]
}

Error Scenario – Request

Below request contains an Invalid Order Number. 

{
   "model": [
      {
         "key": "string",
         "description": "string",
         "status": "string",
         "sourceSystemName": "string",
         "sourceSystemValue": "string",
         "lob": "string",
         "errorCode": "string"
      }
   ]
}

Error Scenario – Response

{
   "data": null,
   "statusCode": "400",
   "errorDetails": [
      {
         "key": "POR_INvalid",
         "errors": [
            {
               "errorCode": "DataValidation",
               "errorDescription": "Invalid Order Number"
            }
         ]
      }
   ],
   "successDetails": []
}

 

Data Elements
 

UpdateProcessedPORStatus

S.No.

Property

Required?

Data type

Description

Validations/Exceptions

1

Model

No

List of UpdateProcessedDocumentStatusModel object

Check data type UpdateProcessedDocumentStatusModel for details

 
 

Model

S.No.

Property

Required?

Data type

Description

Validations/Exceptions

1.1

Status

No

ErrorDetail object

Check data type ErrorDetail for details

 

1.2

Key

Yes

String

Key of the entity

 

  • Key is mandatory

     

 

  • Invalid Order Number

     

1.3

Description

No

String

Description of the entity

 

1.4

SourceSystemDetailsName

No

String

Name of the entity

 

1.5

SourceSystemDetailsValue

No

String

Value of the entity

 

1.6

Lob

No

String

Line-of-business

 

1.7

ErrorCode

No

String

Check data type Error Code