Skip to main content
GET
/
client
/
user
/
{partnerUserId}
Get User
curl --request GET \
  --url https://api.doshi.app/client/user/{partnerUserId} \
  --header 'Access-Type: <access-type>' \
  --header 'Authorization: Bearer <token>'
{
  "partnerUserId": "<string>",
  "firstName": "<string>",
  "contentScopes": [
    "public"
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Authentication token (API Key) provided by Doshi. Your server's IP address must be whitelisted to use this API. Contact hello@doshi.app to whitelist your IPs.

Headers

Access-Type
enum<string>
required

Must be set to 'client' for all API requests

Available options:
client

Path Parameters

partnerUserId
string
required

Response

User details fetched successfully.

partnerUserId
string
required
firstName
string | null
required
contentScopes
enum<string>[]
required
Available options:
public,
internal,
hidden
createdAt
string<date-time>
required
updatedAt
string<date-time>
required