Get all Jobs

Get all Jobs

GET https://api.moltin.com/v2/jobs

Headers

NameTypeDescription

Authorization

string

The Bearer token to grant access to the API

{
    "data": [
        {
            "id": "974c9db4-38da-4dbf-90c2-33eed5f3e77c",
            "type": "job",
            "job_type": "order_export",
            "status": "failed",
            "error": "No results matched the supplied filter",
            "link": {
                "href": ""
            },
            "links": {
                "self": "https://api.moltin.com/v2/jobs/974c9db4-38da-4dbf-90c2-33eed5f3e77c"
            },
            "timestamps": {
                "created_at": "2018-10-04T11:08:49.156490335Z",
                "updated_at": "2018-10-04T11:08:49.162867081Z"
            }
        }
    ]
}
curl -X GET https://api.moltin.com/v2/jobs \
     -H "Authorization: Bearer XXXX"

Last updated