Organization Service V4

Organization Service


Project maintained by npr Hosted on GitHub Pages — Theme by mattgraham

Back to API Documentation

GET Service List

/v4/lists/service

Description

Retrieves and returns the data for all Services.

Data Format

A successful retrieval will result in a 200 status code and JSON array. The array will contain one object for each Service in the system, each with the following attributes:

Attribute Data Type Description
id string the service ID associated with this Service
name string the display name of this Service

Example Response

[
  {
    "id": "s123",
    "name": "Smallville Radio"
  },
  {
    "id": "c456",
    "name": "Central City Public Broadcasting"
  },
  {
    "id": "s789",
    "name": "Gotham Radio Exchange"
  }
]