Get a job
Get a Bulk Job
URL: https://api.courier.com/bulk/:job_id
Method: GET
Path Parameters
job_idstringrequired
A unique identifier representing the bulk job
Responses
status: 200 OK
jobjson
The bulk job data
status: 400 Bad Request
messagestring
A message describing the error that occurred.
typestring
[invalid_request_error] The type of error that occurred.
Request Example
- cURL
- Node.js
- Ruby
- Python
- Go
- PHP
curl --request GET \
--url https://api.courier.com/bulk/1-61e9dd53-b5bb6c863b7ffbe83ad4b28d \
--header 'Accept: application/json'
// Dependencies to install:
// $ npm install node-fetch --save
const fetch = require('node-fetch');
const options = {
method: 'GET',
headers: {
Accept: 'application/json'
},
};
fetch('https://api.courier.com/bulk/1-61e9dd53-b5bb6c863b7ffbe83ad4b28d', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://api.courier.com/bulk/1-61e9dd53-b5bb6c863b7ffbe83ad4b28d")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Accept"] = 'application/json'
response = http.request(request)
puts response.read_body
# Dependencies to install:
# $ python -m pip install requests
import requests
url = "https://api.courier.com/bulk/1-61e9dd53-b5bb6c863b7ffbe83ad4b28d"
headers = {
"Accept": "application/json"
}
response = requests.request("GET", url, headers=headers)
print(response.text)
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.courier.com/bulk/1-61e9dd53-b5bb6c863b7ffbe83ad4b28d"
req, _ := http.NewRequest("GET", url, payload)
req.Header.Add("Accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
<?php
// Dependencies to install:
// $ composer require guzzlehttp/guzzle
require_once('vendor/autoload.php');
$client = new \GuzzleHttp\Client();
$response = $client->request('GET', 'https://api.courier.com/bulk/1-61e9dd53-b5bb6c863b7ffbe83ad4b28d', [
'headers' => [
'Accept' => 'application/json',
],
]);
echo $response->getBody();
Responses Example
{
"job": {
"definition": {
"event": "V7E6M48EFQMB78H746QCCD1KSRAA"
},
"enqueued": 2,
"failures": 0,
"received": 2,
"status": "COMPLETED"
}
}
{
"message": "Error Message",
"type": "invalid_request_error"
}
Example
Method: GET
URL: https://api.courier.com/bulk/1-61e9dd53-b5bb6c863b7ffbe83ad4b28d