GET
/
v1
/
services
/
{uid}
Retrieve a Service
curl --request GET \
  --url https://api.siit.io/v1/services/{uid} \
  --header 'Authorization: Bearer <token>'
{
  "uid": "<string>",
  "name": "<string>",
  "category": {
    "uid": "<string>",
    "name": "<string>"
  },
  "about": "<string>",
  "enabled": true,
  "updated_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z"
}

Usage

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

uid
string
required

The UID of the Service

Response

Service show

uid
string

The UID of the Service

name
string

The Service name

category
object
about
string | null

The Service description

enabled
boolean

Indicates if the Service is enabled

updated_at
string<date-time>

datetime formatted as ISO 8601 (e.g. "2020-12-15T03:34:13.000Z")

created_at
string<date-time>

datetime formatted as ISO 8601 (e.g. "2020-12-15T03:34:13.000Z")