v1

latestSwagger 2.0BeezUP2026-07-13254876845.8 KB
Customer - Account

Get user account information

get/v2/user/customer/account

Headers

If-None-Matchstring

ETag value to identify the last known version of requested resource.
To avoid useless exchange, we recommend you to indicate the ETag you previously got from this operation.
If the ETag value does not match the response will be 200 to give you a new content, otherwise the response will be: 304 Not Modified, without any content.
For more details go to this link: http://tools.ietf.org/html/rfc7232#section-2.3

Response

User account information

userIdstring guid required

The user identifier

emailstring email required

The email

commercialOwnerEmailstring email

The email

csmOwnerstring

The csm owner of the acccount.

status'Active' | 'SystemBlocked' | 'UserBlocked' | 'NotActivated' required

The account status

  • Active: When the account is active
  • SystemBlocked: When all stores on the account are blocked by the system
  • UserBlocked: When all stores on the account are blocked on GO not on the system
  • NotActivated: When the email is not verified
profilePictureUrlstring

Indicate the url of your picture profil

Example response

{
  "userId": "8a7fbdec-9e71-472e-9974-27d5c1d57cf8",
  "email": "paulsimon@mysupercompany.com",
  "commercialOwnerEmail": "paulsimon@mysupercompany.com",
  "csmOwner": "Elise",
  "personalInfo": {
    "lastName": "Simon",
    "firstName": "Paul",
    "phoneNumber": "5551234",
    "whatIDo": "I'm the Manager on this company"
  },
  "status": "Active",
  "companyInfo": {
    "address": "21 jump street",
    "postalCode": "13014",
    "city": "New-York",
    "countryIsoCodeAlpha3": "FRA",
    "company": "My super company",
    "vatNumber": "1234567890",
    "accountingEmails": [
      "myaccountemail@mysupercompany.com"
    ]
  },
  "profilePictureUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Marlon_Brando_%28cropped%29.jpg/220px-Marlon_Brando_%28cropped%29.jpg",
  "links": {
    "self": {
      "href": "/v2/user/customer/account",
      "method": "GET"
    },
    "savePersonalInfo": {
      "href": "/v2/user/customer/account/personalInfo",
      "method": "PUT"
    },
    "changeEmail": {
      "href": "/v2/user/customer/account/changeEmail",
      "method": "POST"
    },
    "changePassword": {
      "href": "/v2/user/customer/account/changePassword",
      "method": "POST"
    },
    "saveCompanyInfo": {
      "href": "/v2/user/customer/account/companyInfo",
      "method": "PUT"
    },
    "getProfilePictureInfo": {
      "href": "/v2/user/customer/account/profilePictureInfo",
      "method": "GET"
    },
    "saveProfilePictureInfo": {
      "href": "/v2/user/customer/account/profilePictureInfo",
      "method": "PUT"
    },
    "getCreditCardInfo": {
      "href": "/v2/user/customer/account/creditCardInfo",
      "method": "GET"
    },
    "saveCreditCardInfo": {
      "href": "/v2/user/customer/account/creditCardInfo",
      "method": "PUT"
    },
    "activateUserAccount": {
      "href": "/v2/user/customer/account/activate",
      "method": "POST"
    }
  }
}