Update Load Effectuation Information
The PostUpdateEffectLoad endpoint is responsible for updating the effectuation date and user in the load.
How to update load effectuation information
HTTP POST Request
| Request Type | Example URL |
|---|---|
| POST | {{url_base}}/PostUpdateEffectLoad |
| Example | http://seuIPePorta/datasnap/rest/RESTWebServiceMethods/"PostUpdateEffectLoad" |
Input Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| LoadNo | String(25) | Yes | External code of the load |
| BranchNo | String(25) | Yes | External code of the branch |
| EffectedLoadDate | DataHora | No | Load effectuation date/time |
| EffectedLoadUserNo | String(15) | No | External code of the user who effected the load |
Return
| Parameter | Type | Required | Description |
|---|---|---|---|
| WebServiceReturn | WebServiceReturn | Yes | Standard WebService response information in method execution |
Request Example
curl --location 'http://seuIPePorta/datasnap/rest/RESTWebServiceMethods/"PostUpdateEffectLoad"' \
--header 'Content-Type: application/json' \
--data '{
"LoadNo": "LOAD123",
"BranchNo": "BR001",
"EffectedLoadDate": "2025-02-20T14:00:00Z",
"EffectedLoadUserNo": "USER001"
}'
Response Example
{
"WebServiceReturn": {
"Status": "wrsSuccess",
"ErrorCode": "",
"Message": "",
"Actor": "",
"ReturnQuestion": null
}
}