Skip to main content
PATCH
/
v2
/
jobs
/
{id}
Update Job Title
curl --request PATCH \
  --url https://api.tryhamsa.com/v2/jobs/{id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "Updated Meeting Notes"
}
'
{
  "success": true,
  "message": "job updated successfully",
  "messageKey": "OPERATION_SUCCESSFUL",
  "data": []
}

Documentation Index

Fetch the complete documentation index at: https://docs.tryhamsa.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Pass the API key in the Authorization header, You need to put Token keyword before the API key. e.g. 'Authorization: Token '

Path Parameters

id
string<uuid>
required

The unique identifier of the job

Example:

"48f7656f-098b-4c43-b165-7cfd2cc8ac30"

Query Parameters

projectId
string<uuid>
required

The unique identifier of the project

Example:

"48f7656f-098b-4c43-b165-7cfd2cc8ac30"

Body

application/json

Request body containing the new title

title
string
required
Required string length: 1 - 500
Example:

"Updated Meeting Notes"

Response

Successful response

success
boolean
Example:

true

message
string
Example:

"job updated successfully"

messageKey
string
Example:

"OPERATION_SUCCESSFUL"

data
array
Example:
[]