Skip to main content

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 TypeExample URL
POST{{url_base}}/PostUpdateEffectLoad
Examplehttp://seuIPePorta/datasnap/rest/RESTWebServiceMethods/"PostUpdateEffectLoad"

Input Parameters

ParameterTypeRequiredDescription
LoadNoString(25)YesExternal code of the load
BranchNoString(25)YesExternal code of the branch
EffectedLoadDateDataHoraNoLoad effectuation date/time
EffectedLoadUserNoString(15)NoExternal code of the user who effected the load

Return

ParameterTypeRequiredDescription
WebServiceReturnWebServiceReturnYesStandard 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
}
}