Skip to main content

List service user tokens

List all the tokens of a service user.

Path Parameters
    id string required

    The unique ID of the service user to list tokens for.

Responses

A successful response.


Schema
    tokens object[]
  • Array [
  • id string
    title string
    token token will only be returned once as part of the create process this value is never persisted in the system so if lost, can't be recovered
    created_at date-time

    The time when the token was created.

  • ]
GET /v1beta1/serviceusers/:id/tokens

Authorization

name: Basic type: httpdescription: use Client ID as username and Client Secret as passwordin: headerscheme: basic

Request

Base URL
http://127.0.0.1:7400
Security Scheme
Username
Password
id — path required
curl / cURL
curl -L -X GET 'http://127.0.0.1:7400/v1beta1/serviceusers/:id/tokens' \
-H 'Accept: application/json'