Skip to content

Retrieve a Support PIN for a user

GET
/api/v4/users/{id}/support_pin

Retrieves a Support PIN for a specified user. GitLab Support may ask for this PIN to validate your identity. Administrators only.

id
required
integer

The ID of the user

OK

Media type application/json
object
pin

The security PIN

string
expires_at

The expiration time of the PIN

string format: date-time
Example generated
{
"pin": "example",
"expires_at": "2026-04-15T12:00:00Z"
}

Bad Request

Not Found