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
Unique client identification details
Length of input:
Min 3 Characters
Max 20 Characters
String
clientsecret
Mandatory
Unique client identification secret code
Length of input:
Min 3 Characters
Max 20 Characters
String
signature
Mandatory
64-Bit string obtained by processing client signature key through Base-64 and SHA-256String
apiName
Mandatory
Name of the API serviceObject
companyCodes
Mandatory
Tag carrying information on the companiesObject/Array
errorDescription
Mandatory
Error description
Length of input:
Min 3 Characters
Max 35 Characters
String
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