Skip to main content
POST
/
updateDisclosedJobDeliverable
Update disclosed job deliverable status
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/updateDisclosedJobDeliverable \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "disclosed_job_id": 1,
  "deliverable_id": 1,
  "status": "paid",
  "payment_date": "2026-04-01"
}
'

Documentation Index

Fetch the complete documentation index at: https://developer.mogl.online/llms.txt

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

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Use the /api/login endpoint to obtain a token.

Body

application/json
disclosed_job_id
integer
required

Disclosed job ID

Example:

1

deliverable_id
integer
required

Deliverable ID

Example:

1

status
string
required

New status

Example:

"paid"

payment_date
string<date>
required

Payment date

Example:

"2026-04-01"

Response

200

Deliverable updated