Error Posting
Report an error
Sample request
A request in the following format should be posted to the URL https://servicesuat.onesingleview.com/v1/api/erp/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 Tag | Description | Data type |
---|---|---|
clientid Mandatory | Client ID | String |
clientsecret Mandatory | Client Code | String |
signature Mandatory | Signature Code | String |
apiName Mandatory | ARAP Service request tag | Object |
companyCodes Mandatory | Unique company codes | Array |
errorDescription Mandatory | Error description | String |
errorCode Mandatory | Error Code of ERP | String |
statusCode Mandatory | Status Code of ERP | String |
Sample response
{ success: true, message: "error captured successfully" }
Response description:
JSON Tag | Description | Data type |
---|---|---|
success | True - If processed successfully False - Unsuccessful processing | String |
message | Message of the process | String |
Updated 8 months ago