Appearance
Particle
undefined
| Detail | Value |
|---|---|
| Category | IoT |
| Base URL | https://api.particle.io/v1 |
| Authentication | Bearer Token |
| Endpoints | 6 |
| Connector key | particle |
Using Particle in a workflow
- Go to Connections and click New Connection.
- Pick Particle from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET | Devices |
GET | Functions |
GET | Variables |
GET | Events |
GET | Products |
GET | Firmware |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET
Devices
| Detail | Value |
|---|---|
| Operation ID | devices_0 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Particle connection from the Connection dropdown.
- In the Operation dropdown, select
devices_0. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Particle API reference.
GET
Functions
| Detail | Value |
|---|---|
| Operation ID | functions_1 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Particle connection from the Connection dropdown.
- In the Operation dropdown, select
functions_1. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Particle API reference.
GET
Variables
| Detail | Value |
|---|---|
| Operation ID | variables_2 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Particle connection from the Connection dropdown.
- In the Operation dropdown, select
variables_2. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Particle API reference.
GET
Events
| Detail | Value |
|---|---|
| Operation ID | events_3 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Particle connection from the Connection dropdown.
- In the Operation dropdown, select
events_3. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Particle API reference.
GET
Products
| Detail | Value |
|---|---|
| Operation ID | products_4 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Particle connection from the Connection dropdown.
- In the Operation dropdown, select
products_4. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Particle API reference.
GET
Firmware
| Detail | Value |
|---|---|
| Operation ID | firmware_5 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Particle connection from the Connection dropdown.
- In the Operation dropdown, select
firmware_5. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Particle API reference.