User

Request

Fields when send to the api inside a request.

Field Type Description
firstname String A String value
lastname String A String value
email Email Email address
telephone Phone International phone number
notifications UserNotifications Information about the notifications a user want to receive

Response

Fields when returned by the api in a response.

Field Type Description
firstname String A String value
lastname String A String value
email Email Email address
telephone Phone International phone number
notifications UserNotifications Information about the notifications a user want to receive
id Int An integer value
delivery_address Address.simple? Nullable. An address
company Checkout.Company? Nullable.
bank_account_number String? Nullable. A String value

Examples

Request

When used inside a request.

Example 1

{
    "firstname": "...",
    "lastname": "...",
    "email": "example@domain.com",
    "telephone": "+32 475 00 00 00",
    "notifications": {
        "email_when_order": false,
        "email_when_comment": false,
        "email_when_order_confirmed": true,
        "email_when_order_cancel": true,
        "email_when_newsletter": false
    }
}

Response

When returned in a response.

Example 1

{
    "firstname": "...",
    "lastname": "...",
    "email": "example@domain.com",
    "telephone": "+32 475 00 00 00",
    "notifications": {
        "email_when_order": false,
        "email_when_comment": true,
        "email_when_order_confirmed": true,
        "email_when_order_cancel": false,
        "email_when_newsletter": true
    },
    "id": 11,
    "delivery_address": {
        "street": "Sint-Denijslaan",
        "nr": "96",
        "zipcode": "9000",
        "city": "Gent",
        "country": "BE"
    },
    "company": {
        "name": "...",
        "vat": "BE0123456789",
        "address": {
            "street": "Sint-Denijslaan",
            "nr": "96",
            "zipcode": "9000",
            "city": "Gent",
            "country": "BE"
        }
    },
    "bank_account_number": "..."
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.4.0 stable