AWS IoT Jobs Data Plane
amazonaws · Cloud
AWS IoT Jobs is a service that allows you to define a set of jobs — remote operations that are sent to and executed on one or more devices connected to AWS IoT. For example, you can define a job that instructs a set of devices to download and install application or firmware updates, reboot, rotate certificates, or perform remote troubleshooting operations. To create a job, you make a job document which is a description of the remote operations to be performed, and you specify a list o
Authentication
Sample Requests
Gets the list of all jobs for a thing that are not in a terminal status.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs"import requests
response = requests.get(
"https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs';
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs"
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Gets details of a job execution.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}?executionNumber=1&includeJobDocument=true"import requests
params = {
"executionNumber": "1",
"includeJobDocument": "true"
}
response = requests.get(
"https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}');
url.searchParams.set('executionNumber', '1');
url.searchParams.set('includeJobDocument', 'true');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}")
q := baseURL.Query()
q.Set("executionNumber", "1")
q.Set("includeJobDocument", "true")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}")
uri.query = URI.encode_www_form({
"executionNumber" => "1",
"includeJobDocument" => "true"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}?" . http_build_query([
"executionNumber" => "1",
"includeJobDocument" => "true"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Updates the status of a job execution.
Hover any highlighted part to learn what it does
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}"import requests
response = requests.post(
"https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}';
const response = await fetch(url, {
method: 'POST',
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}"
req, _ := http.NewRequest("POST", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/things/{thingName}/jobs/{jobId}";
$opts = ["http" => [
"method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with AWS IoT Jobs Data Plane?
AWS IoT Jobs Data Plane is a Cloud API. Developers commonly use cloud APIs for:
- provisioning and managing cloud infrastructure
- automating deployments and container orchestration
- monitoring uptime and performance metrics
- managing storage buckets and databases
- setting up auto-scaling and load balancing
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. AWS IoT Jobs Data Plane is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?