# Obtener el access token

**Pasos para obtener el Access Token:**

1. Realiza una solicitud al endpoint de autenticación utilizando las credenciales de tu usuario en ZapSign.
2. Este endpoint te devolverá tanto el **Access Token** como el **Refresh Token**.

<mark style="color:green;">`POST`</mark> `https://api.zapsign.com.br/api/v1/auth/token/{{`organization\_ID`}}/`

{% hint style="info" %}
**Cómo obtener tu Organization ID:** Ve a **Ajustes  > Integraciones > API ZapSign** y copia el número al lado de ID Organización.
{% endhint %}

```
Request body
{
    "username": "dev@ejemplo.com",
    "password": "StrongPassword123"
}

```

<figure><img src="/files/0ENoF7YU2NpY2Kcxy7Lw" alt=""><figcaption></figcaption></figure>

{% tabs %}
{% tab title="200: OK Authentication successfully completed." %}
{% code overflow="wrap" %}

```json
{
    "refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTcxMDE3ODM0NCwianRpIjoiYjhmZjMwNDJmNjRkNDJmM2FlMzczZmRiNDQ3YTQ2NGEiLCJ1c2Vyb",
    "access": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
}
```

{% endcode %}
{% endtab %}

{% tab title="401: Unauthorized Invalid credentials" %}
{% code overflow="wrap" %}

```json
{
    "detail": "No active account found with the given credentials"
}
```

{% endcode %}
{% endtab %}

{% tab title="400: Bad Request Login attempts exceeded." %}

```javascript
{
    "message": "Rate limit exceeded"
}
```

{% endtab %}
{% endtabs %}

Una vez que tengas tu token, puedes autenticarte en los endpoints de ZapSign incluyéndolo en el encabezado "Authorization" de tus solicitudes, con el prefijo `"Bearer"`. Por ejemplo

```
  'headers': {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzA5ODIwMTQxLCJqdGkiOiIxMGM4YmVhOTkxNDM0ZGU5OWQxNmViMGE2ZTA3MTU1YyIsInVzZXJfaWQiOjEsInR5cGUiOiJwdWJsaWMifQ.GhMKXDyiidHrWCSmU3I9e6-zDm61mBmDqEavir4IW0c'
  },
```

Después de una hora, debes volver a autenticarte. En la siguiente sección conoce como [Actualizar el Access Token. ](/espanol/autenticacion/autenticacion-jwt/actualizar-access-token.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.zapsign.com.br/espanol/autenticacion/autenticacion-jwt/obtener-el-access-token.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
