Updates an existing timesheet.
Parameter | Mandatory | Description | Examples | More Info |
---|---|---|---|---|
API | Yes | The API area | tspending.json | |
General | Yes | Parameters described in overview | see overview | Structure of an API call |
Action | Yes | The action to perform | action=update | |
Input | Yes | JSON string | See below |
JSON Input | Mandatory | Description | Examples |
---|---|---|---|
Identifier | Yes | Data to identify the timesheet | "tspEntryNo":14822 |
Data | No | Data to update | "tspHoursNormal":1 |
Example request:
http://<SERVER>/jsonapi/tspending.json?user=user&password=user&version=3.9&action=update&input={
"data": [
{
"tspEntryNo": 14822,
"tspHoursNormal": 1
}
]
}
Example response:
{
"responsecode": 1,
"responsestatus": "OK",
"errorcode": 0,
"errormessage": "",
"responsemessage": "data processed successfully.",
"warningmessage": "",
"success": true,
"data": [
{
"tspTimerStatusNormal": "",
"tspEntryNo": 14822,
"tspUuid": "F9896E8E3EBAD047A0C346C8929BA0DD",
"tspTimeStampModified": 0,
"tspRecordVersionNumber": 0
}
]
}