2018-01-05 22:31:56 +01:00
|
|
|
# Get profile
|
|
|
|
|
2020-04-28 20:00:46 +02:00
|
|
|
{generate_api_description(/users/me:get)}
|
2018-01-05 22:31:56 +01:00
|
|
|
|
|
|
|
## Usage examples
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{start_tabs}
|
|
|
|
{tab|python}
|
2018-01-05 22:31:56 +01:00
|
|
|
|
2019-08-04 13:08:36 +02:00
|
|
|
{generate_code_example(python)|/users/me:get|example}
|
2018-01-05 22:31:56 +01:00
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{tab|js}
|
2018-01-05 22:31:56 +01:00
|
|
|
|
2018-01-13 23:34:34 +01:00
|
|
|
More examples and documentation can be found [here](https://github.com/zulip/zulip-js).
|
|
|
|
```js
|
|
|
|
const zulip = require('zulip-js');
|
|
|
|
|
2019-01-07 14:27:58 +01:00
|
|
|
// Pass the path to your zuliprc file here.
|
2018-01-13 23:34:34 +01:00
|
|
|
const config = {
|
2019-01-07 14:27:58 +01:00
|
|
|
zuliprc: 'zuliprc',
|
2018-01-13 23:34:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
zulip(config).then((client) => {
|
|
|
|
// Get the profile of the user/bot that requests this endpoint,
|
|
|
|
// which is `client` in this case:
|
|
|
|
client.users.me.getProfile().then(console.log);
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{tab|curl}
|
|
|
|
|
2019-10-11 14:52:41 +02:00
|
|
|
{generate_code_example(curl)|/users/me:get|example}
|
2018-01-05 22:31:56 +01:00
|
|
|
|
2018-09-17 16:27:32 +02:00
|
|
|
{end_tabs}
|
2018-01-05 22:31:56 +01:00
|
|
|
|
2018-01-20 22:03:05 +01:00
|
|
|
## Arguments
|
|
|
|
|
|
|
|
This endpoint takes no arguments.
|
|
|
|
|
2018-01-05 22:31:56 +01:00
|
|
|
## Response
|
|
|
|
|
|
|
|
#### Return values
|
|
|
|
|
|
|
|
* `pointer`: The integer ID of the message that the pointer is currently on.
|
|
|
|
* `max_message_id`: The integer ID of the last message by the user/bot with
|
|
|
|
the given profile.
|
|
|
|
|
|
|
|
The rest of the return values are quite self-descriptive.
|
|
|
|
|
|
|
|
#### Example response
|
|
|
|
|
|
|
|
A typical successful JSON response may look like:
|
|
|
|
|
2019-08-04 13:08:36 +02:00
|
|
|
{generate_code_example|/users/me:get|fixture(200)}
|