Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

...

All request needs requests need to be made to this base URL:

...

Header Parameter

Optional

Description

x-everit-jwt

false

jwt JWT token, see: REST API

x-requested-by

false

CSRF protection paramterparameter.

x-timezone

true

The time zone of the user, for eg.: 'Europe/Budapest'. If not specified defaults to UTC.

...

The available parameters of the NewWorklog:

Parameter

Value type

Optional

Description

description

string

true

The description of a worklog.

Example: “description”: “my description“

durationInSeconds

number

true

The duration of a worklog in seconds.
Example: “durationInSeconds”: 3600

isBillable

boolean

true

True if the worklog is billable.

Example: “isBillable”: true

issueId

number

true

The worklog was made on this issue.

Example: “issueId”: 10000

workDate

string

false

The day (ISO-8601 date in 'yyyy-MM-dd' format) when the work was made.

Example: “workDate”: “2023-04-24“

worklogTagIds

number list[]

true

The IDs of the worklog tags assigned to this worklog.

Example: “worklogTagIds”: [1, 5]

workStartTime

string

true

The time (ISO-8601 time in 'HH:mm' format) when the work was started.

Example: “workStartTime”: "11:00"

...

Code Block
{
    "description": "my description",
    "durationInSeconds": 3600,
    "isBillable": true,
    "worklogTagIds": [ 1, 5],
    "issueId": 10182,
    "workDate": "2023-04-24",
    "workStartTime": "12:00"
}

...

Header Parameter

Optional

Description

x-everit-jwt

false

jwt JWT token, see: REST API

x-requested-by

false

CSRF protection paramter.

x-timezone

true

The time zone of the user, for eg.: 'Europe/Budapest'. If not specified defaults to UTC.

...

The available parameters of the PatchWorklog:

Parameter

Value type

Optional

Description

worklogId

number

false

The ID of the worklog to patch.

partialWorklog

PartialWorklog

false

The patch to apply on the worklog. Only the fields with defined values will be updated.

The available parameters of the PartialWorklog:

Parameter

Value

Optional

Description

description

string

true

The description of a worklog.

durationInSeconds

number

true

The duration of a worklog in seconds.

isBillable

boolean

true

True if the worklog is billable.

issueId

number

true

The worklog was made on this issue.

workDate

string

true

The day (ISO-8601 date in 'yyyy-MM-dd' format) when the work was made.

worklogTagIds

number list[]

true

The IDs of the worklog tags assigned to this worklog.

workStartTime

string

true

The time (ISO-8601 time in 'HH:mm' format) when the work was started.

...

Header Parameter

Optional

Description

x-everit-jwt

false

jwt JWT token, see: REST API

x-timezone

true

The time zone of the user, for eg.: 'Europe/Budapest'. If not specified defaults to UTC.

...

Header Parameter

Optional

Description

x-everit-jwt

false

jwt JWT token, see: REST API

x-requested-by

false

CSRF protection paramter.

x-timezone

true

The time zone of the user, for eg.: 'Europe/Budapest'. If not specified defaults to UTC.

...