POST /a/auth/tokens

List generated personal access tokens, eventually filtering by user

Body Parameters

Name Description Type Required
ByUser string

Body Example

{
  "ByUser": "string"
}

Response Example (200)

Response Type /definitions/authPatListResponse

{
  "Tokens": [
    {
      "AutoRefreshWindow": 10,
      "CreatedAt": "string",
      "CreatedBy": "string",
      "ExpiresAt": "string",
      "Label": "string",
      "Scopes": [
        "string"
      ],
      "Type": "string",
      "UpdatedAt": "string",
      "UserLogin": "string",
      "UserUuid": "string",
      "Uuid": "string"
    }
  ]
}
Auto generated by Pydio Cells Enterprise Distribution v4.3.1 on 14-Nov-2023
Back to top