debian-mirror-gitlab/doc/api/avatar.md

42 lines
1.5 KiB
Markdown
Raw Normal View History

2018-11-08 19:23:39 +05:30
# Avatar API
2020-03-13 15:44:24 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/19121) in GitLab 11.0.
2018-11-08 19:23:39 +05:30
## Get a single avatar URL
2019-03-02 22:35:43 +05:30
Get a single [avatar](../user/profile/index.md#profile-settings) URL for a user with the given email address.
2018-11-08 19:23:39 +05:30
2019-03-02 22:35:43 +05:30
If:
- No user with the given public email address is found, results from external avatar services are
returned.
- Public visibility is restricted, response will be `403 Forbidden` when unauthenticated.
NOTE: **Note:**
This endpoint can be accessed without authentication.
2020-05-24 23:13:21 +05:30
```plaintext
2018-11-08 19:23:39 +05:30
GET /avatar?email=admin@example.com
```
2019-03-02 22:35:43 +05:30
Parameters:
2018-11-08 19:23:39 +05:30
2019-03-02 22:35:43 +05:30
| Attribute | Type | Required | Description |
|:----------|:--------|:---------|:----------------------------------------------------------------------------------------------------------------------------------------|
| `email` | string | yes | Public email address of the user. |
| `size` | integer | no | Single pixel dimension (since images are squares). Only used for avatar lookups at `Gravatar` or at the configured `Libravatar` server. |
Example request:
2020-03-13 15:44:24 +05:30
```shell
2020-06-23 00:09:42 +05:30
curl "https://gitlab.example.com/api/v4/avatar?email=admin@example.com&size=32"
2018-11-08 19:23:39 +05:30
```
Example response:
```json
{
2019-03-02 22:35:43 +05:30
"avatar_url": "https://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=64&d=identicon"
2018-11-08 19:23:39 +05:30
}
```