> ## Documentation Index
> Fetch the complete documentation index at: https://docs.venepagos.com.ve/llms.txt
> Use this file to discover all available pages before exploring further.

# Registrar push token

> Registra un token de notificaciones push para el dispositivo del usuario.

<Note>
  Requiere autenticación con Bearer token.
</Note>

<ParamField body="token" type="string" required>
  Token del dispositivo para notificaciones push (FCM o APNs).
</ParamField>

<ParamField body="platform" type="string" required>
  Plataforma del dispositivo. Valores permitidos: `ios`, `android`.
</ParamField>

### Respuesta

<ResponseField name="message" type="string">
  Mensaje de confirmación del registro.
</ResponseField>

<ResponseExample>
  ```json 201 theme={null}
  {
    "message": "Push token registrado exitosamente."
  }
  ```
</ResponseExample>
