(GET) Devices

Retrieve a list of Spotters associated with your account.

GET https://api.sofarocean.com/api/devices

Returns a list containing the display name and Spotter ID of any Spotters you have API access to (i.e., Spotters registered to or shared with your account).

Query Parameters

Name
Type
Description

excludeSharedDevices

boolean

Default: false

Set true to limit the response to Spotters registered directly to your account. Any Spotters shared to your account will be excluded.

Response Description

The response body contains a list of Spotters associated with the account, ordered by spotterId.

Name
Type
Description

spotterId

string

The Spotter's identifier.

name

string

The Spotter's display name, as configured in the Spotter Dashboardarrow-up-right. Returns null if no display name has been set.

Examples

Example Request

curl "https://api.sofarocean.com/api/devices" -H 'token: YOUR_API_TOKEN'

Example Responses

2 Devices:

{
  "message": "2 devices",
  "data": {
    "devices": [
      {
        "spotterId": "SPOT-0017",
        "name": "Mavericks 1"
      },
      {
        "spotterId": "SPOT-0018",
        "name": "Golden Gate"
      }
    ]
  }
}

No Devices:

{
    "message": "0 devices",
    "data": {
        "devices": []
    }
}

Last updated

Was this helpful?