Update personal access token

PATCH /api/users/{userId}/personal-access-tokens/{name}

Update a token for the user by name.

Path parameters

  • userId string Required

    The unique identifier of the user.

  • name string Required

    The name of the token.

application/json

Body Required

  • name string Required

    The token name to update. Must be unique within the user.

    Minimum length is 1, maximum length is 256.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • tenantId string Required

      Maximum length is 21.

    • userId string Required

      Minimum length is 1, maximum length is 21.

    • name string Required

      Minimum length is 1, maximum length is 256.

    • value string Required

      Minimum length is 1, maximum length is 64.

    • createdAt number Required
    • expiresAt number | null Required
  • The token was updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

PATCH /api/users/{userId}/personal-access-tokens/{name}
curl \
 -X PATCH https://[tenant_id].logto.app/api/users/{userId}/personal-access-tokens/{name} \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"name":"string"}'
Request examples
{
  "name": "string"
}
Response examples (200)
{
  "tenantId": "string",
  "userId": "string",
  "name": "string",
  "value": "string",
  "createdAt": 42.0,
  "expiresAt": 42.0
}