# GET /user/:userID/resumes

This endpoint returns the resume object. By default, resume ID, name, and creation timestamp are only returned. See [resumeObject](/rms-guide/rezi-api/resume/resume-object.md) for more details.

## Get resumes ID for a user

<mark style="color:blue;">`GET`</mark> `https://open-api.rezi.ai/v1/user/:userID/resumes`

#### Path Parameters

| Name                                     | Type   | Description |
| ---------------------------------------- | ------ | ----------- |
| userID<mark style="color:red;">\*</mark> | String | User ID     |

#### Headers

| Name                                             | Type   | Description                                                                                                                                               |
| ------------------------------------------------ | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Authentication<mark style="color:red;">\*</mark> | String | <p>"Bearer PRIVATE\_TOKEN\_API\_KEY" <br>Authentication token to secure and track down your usage. Use this specific format with your Private API key</p> |

{% tabs %}
{% tab title="200: OK success" %}

```javascript
{
    "status": "success",
    "data": [resumeObject,resumeObject],
    "total": 2
}
```

{% endtab %}

{% tab title="500: Internal Server Error " %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="401: Unauthorized Token is not authorized" %}

```javascript
{
    "code": 401,
    "message": "Jwt verification fails"
}
```

{% endtab %}

{% tab title="204: No Content " %}

```javascript
{
    "status": "No content",
    "message": "user not found"
}
```

{% endtab %}
{% endtabs %}


---

# 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://rezi-1.gitbook.io/rms-guide/rezi-api/user/get-user-userid-resumes.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.
