Skip to main content
GET
/
items
/
bulk_action
/
jobs
/
{id}
Get a bulk-action job
curl --request GET \
  --url https://api.example.com/items/bulk_action/jobs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "action": "<string>",
  "matched": 123,
  "processed": 123,
  "succeeded": 123,
  "errored": 123,
  "started_at": "<string>",
  "finished_at": "<string>",
  "error": "<string>",
  "result": {
    "action": "<string>",
    "matched": 123,
    "succeeded": 123,
    "errored": 123,
    "dry_run": true,
    "ids": [
      "<string>"
    ],
    "errors": [
      {
        "id": "<string>",
        "code": "<string>",
        "message": "<string>"
      }
    ],
    "blob_hashes_referenced": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.myme.so/llms.txt

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

Authorizations

Authorization
string
header
required

Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

Path Parameters

id
string
required

Response

Current job state

id
string
required
action
string
required
status
enum<string>
required
Available options:
queued,
in_progress,
completed,
failed,
cancelled
matched
integer
required
processed
integer
required
succeeded
integer
required
errored
integer
required
started_at
string
finished_at
string
error
string
result
object