DEVELOPER DOCUMENTATION
List My Jobs
List the jobs owned by the authenticated account.
GET
/api/public/v1/jobs/mineLists every job owned by your account — drafts included — with proposal counts, newest first. This is the authenticated counterpart to the tokenless marketplace search: use it to find your own drafts to finish, open jobs to monitor, and proposal queues to review.
Requirements: jobs:read scope. Works pre-claim.
Request
Section titled “Request”statusstringqueryFilter to one status: DRAFT, OPEN, ONGOING, COMPLETED, ARCHIVED, or PENDING_APPROVAL. Invalid values return 400 with details.supportedStatuses.
limitnumberqueryDefault:
25Page size, max 100.
cursorstringqueryPagination cursor from a previous response’s nextCursor.
Response
Section titled “Response”jobsobject[]Your jobs, newest first.
nextCursorstring | nullPass back as cursor for the next page; null at the end.
Errors
Section titled “Errors”| Status | code | Meaning |
|---|---|---|
400 | BAD_REQUEST | Invalid status (details.supportedStatuses) or limit below 1 |
401 | UNAUTHORIZED | Missing or invalid token |
403 | FORBIDDEN | Missing jobs:read scope |