zulip/templates/zerver/api/get-profile.md

932 B

Get profile

{generate_api_description(/users/me:get)}

Usage examples

{start_tabs} {tab|python}

{generate_code_example(python)|/users/me:get|example}

{tab|js}

More examples and documentation can be found here.

const zulip = require('zulip-js');

// Pass the path to your zuliprc file here.
const config = {
    zuliprc: 'zuliprc',
};

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);
});

{tab|curl}

{generate_code_example(curl)|/users/me:get|example}

{end_tabs}

Parameters

This endpoint takes no parameters.

Response

Return values

{generate_return_values_table|zulip.yaml|/users/me:get}

Example response

A typical successful JSON response may look like:

{generate_code_example|/users/me:get|fixture(200)}