Error Posting

Report an error

In case you have received an unusual error, it is recommended to exercise the Error posting service and report it.

Post an Error

Endpoint details

Endpoint URLMethodAuthentication requirements
/v1/api/erp/errorPOST1. clientid
2. clientsecret
3. signature

A request in the following format should be posted to the above mentioned endpoint to post an error:

curl --location --request POST 'https://servicesuat.onesingleview.com/v1/api/erp/error' \
--header 'clientid: Enter_Client_ID' \
--header 'clientsecret: Enter_Client_Secret' \
--header 'signature: Enter_Signature' \
--header 'Content-Type: application/json' \
--data-raw '{
  "apiName": "svGrpCmpService",
  "companyCodes": [
    "Enter_Company_Code","Enter_Company_Code"
  ],
  "errorDescription": "Enter_ERP_Error_Description",
  "errorCode": "Enter_Error_Code",
  "statusCode": "Enter_Status_Code"
}'

Request details:

JSON TagDescriptionData type
clientid
Mandatory
Client IDString
clientsecret
Mandatory
Client CodeString
signature
Mandatory
Signature CodeString
apiName
Mandatory
ARAP Service request tagObject
companyCodes
Mandatory
Unique company codesArray
errorDescription
Mandatory
Error descriptionString
errorCode
Mandatory
Error Code of ERPString
statusCode
Mandatory
Status Code of ERPString

In case the details in your message are found to be valid, you will receive the following response:

{
  success: true,
  message: "error captured successfully"
}

Response description:

JSON TagDescriptionData type
successTrue - If processed successfully
False - Unsuccessful processing
String
messageMessage of the processString