Skip to main content
GET
/
{alias}
/
users
/
{id}
Visualizar detalhes de um usuário
curl --request GET \
  --url https://api.dooki.com.br/v2/{alias}/users/{id} \
  --header 'User-Secret-Key: <api-key>' \
  --header 'User-Token: <api-key>'
{
  "id": 123,
  "active": true,
  "name": "<string>",
  "social_name": "<string>",
  "email": "jsmith@example.com",
  "temporary_email": "jsmith@example.com",
  "is_owner": true,
  "agree": true,
  "merchant_owner": true,
  "super_user": true,
  "last_login_at": "2023-11-07T05:31:56Z",
  "avatar_url": "<string>",
  "allow_notifications": true,
  "type": "<string>",
  "created_at": {
    "date": "2000-08-17 10:24:24",
    "timezone_type": "3",
    "timezone": "America/Sao_Paulo"
  },
  "created_at_timestamp": 123,
  "updated_at": {
    "date": "2000-06-23 08:05:17",
    "timezone_type": "3",
    "timezone": "America/Sao_Paulo"
  },
  "confirmed_at": "2023-11-07T05:31:56Z",
  "mfa_enabled": true,
  "cpf": "<string>",
  "birthday": "2023-12-25",
  "phone": "<string>",
  "address_street": "<string>",
  "address_number": "<string>",
  "address_neighborhood": "<string>",
  "address_complement": "<string>",
  "address_city": "<string>",
  "address_state": "<string>",
  "address_zipcode": "<string>",
  "merchants": {
    "data": [
      {
        "id": 123,
        "preset_id": 123,
        "active": true,
        "internal_active": true,
        "is_marketplace": true,
        "is_partner": true,
        "use_only_checkout": true,
        "profile": "<string>",
        "alias": "<string>",
        "has_domain": true,
        "domain": "<string>",
        "base_url": "<string>",
        "name": "<string>",
        "icon_url": "<string>",
        "logo_url": "<string>",
        "has_subscription": true,
        "has_charges": true,
        "has_marketplace_accounts": true,
        "has_shopify": true,
        "has_affiliations": true,
        "coupon_created": true,
        "order_bump_created": true,
        "upsell_created": true,
        "pixel_created": true,
        "owner_id": 123,
        "owner_email": "jsmith@example.com",
        "owner_created_at": "2023-11-07T05:31:56Z",
        "domains_list": [
          "<string>"
        ],
        "tags": [
          "<string>"
        ],
        "has_services": {
          "shopifyapp": true,
          "bling": true,
          "woocommerce": true,
          "mago": true,
          "tiny": true
        },
        "shopify_integration": "<string>",
        "has_credit_card": true,
        "created_at": {
          "date": "2000-08-17 10:24:24",
          "timezone_type": 3,
          "timezone": "America/Sao_Paulo"
        },
        "updated_at": {
          "date": "2000-08-17 10:24:24",
          "timezone_type": 3,
          "timezone": "America/Sao_Paulo"
        },
        "subscription": {
          "plan": "<string>",
          "status": "<string>"
        }
      }
    ]
  },
  "group": {
    "data": [
      "<any>"
    ]
  },
  "notification_types": {
    "data": [
      "<any>"
    ]
  },
  "lead_data": {
    "data": [
      "<any>"
    ]
  }
}

Authorizations

User-Token
string
header
required
User-Secret-Key
string
header
required

Path Parameters

alias
string
required

Alias da loja

id
integer
required

ID do usuário

Response

Detalhes do usuário

Informações de um usuário.

id
integer
active
boolean
name
string
social_name
string | null
email
string<email>
temporary_email
string<email> | null
is_owner
boolean
agree
boolean
merchant_owner
boolean
super_user
boolean
last_login_at
string<date-time>
avatar_url
string<uri>
allow_notifications
boolean
type
string
created_at
object
created_at_timestamp
integer
updated_at
object
confirmed_at
string<date-time>
mfa_enabled
boolean
cpf
string
birthday
string<date>
phone
string
address_street
string | null
address_number
string | null
address_neighborhood
string | null
address_complement
string | null
address_city
string | null
address_state
string | null
address_zipcode
string | null
merchants
object
group
object
notification_types
object
lead_data
object
I