POST
/
timmi
/
services
/
workflow
/
remind
curl --request POST \
  --url https://{account}-{sandboxName}.sandbox.{server}.luccasoftware.com/timmi/services/workflow/remind \
  --header 'Content-Type: application/json' \
  --data '{
  "timesheets": [
    {
      "startsAt": "2024-06-01",
      "endsAt": "2024-07-01",
      "ownerId": 2
    }
  ]
}'
{
  "Status": 123,
  "Message": "<string>",
  "Items": [
    {
      "Id": 123,
      "ExceptionMessage": "<string>",
      "Status": 0,
      "Title": "<string>",
      "Url": "<string>"
    }
  ]
}

Body

application/json
Timesheets are identified by startsAt, endsAt & ownerId.
timesheets
object[]

Response

200
application/json
Workflow response
Status
integer

HTTP status code.

Message
string | null

Human readable error message (when error).

Items
object[]

Was this page helpful?