LogicTrade API
  1. Customer
LogicTrade API
  • Authentication
  • Pagination
  • Rate limits
  • Error codes
  • Changelog
  • Configuration Service
  • Endpoints
    • Authentication
      • Introspection
    • Customer
      • Authenticate a customer user account
        POST
      • List all customers
        GET
      • Retrieve a customer by id
        GET
      • Create a customer
        POST
      • Update a customer
        PUT
      • Remove the customer
        DELETE
    • Supplier
      • List all suppliers
      • Retrieve a supplier by id
      • Create a supplier
      • Update a supplier
      • Remove the supplier
    • Product
      • Product
        • List all products
        • Retrieve a product by id
        • Create a product
        • Remove the products
        • Update a product
        • Search products
        • List all variants
        • Retrieve a variant by id
        • Create a variant
        • Update a variant
        • Delete a variant
      • Groups
        • List all product groups
      • Discount
        • List all discounts for products
        • Get all discounts for product by id
        • List all discounts for customers
        • Get all discounts for a customer by id
      • Stock
        • Get stock for products
        • Search stock for products
      • Prices
        • Get product prices
      • Descriptions
        • Get the descriptions for a product
      • References
        • Get the product references
      • Compositions
        • Get product compositions
      • Configurator
        • List all configuration steps
        • List all configuration step values
        • Get configuration step value image
        • List all product configuration steps
    • Quote
      • List all quotes
      • Retrieve a quote by id
      • Create a quote
      • Update a quote
    • Sales order
      • Lines
        • Create an order line
        • Retrieve an order line by id
        • Update an order line
        • Delete an order line
      • List all orders
      • Retrieve an orders by id
      • Create an order
      • Update an order
    • Invoice
      • List all invoices
      • Retrieve a invoice by id
      • Create a invoice
      • Update a invoice
    • Delivery
      • Get list of orders that can be delivered
      • Update the order with delivery information
    • Purchase order
      • List all purchase orders
      • Retrieve a purchase orders by id
      • Create a purchase order
      • Update a purchase order
  1. Customer

Authenticate a customer user account

POST
/rest/v1/customer/authenticate
Authenticate a customer user account using email and password. Returns a 200 OK when authenticated. If the email or password doesn't match it returns a 401 Unauthorized

Request

Authorization
Add parameter in header
api-key
Example:
api-key: ********************
Body Params application/json

Example
{
    "email": "string",
    "password": "string"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.logictrade.cloud/rest/v1/customer/authenticate' \
--header 'api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "string",
    "password": "string"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "id": 0,
    "number": "string",
    "gender": "string",
    "title": "string",
    "initials": "string",
    "firstName": "string",
    "infix": "string",
    "lastName": "string",
    "companyName": "string",
    "cocNumber": "string",
    "vatNumber": "string",
    "phoneNumber": "string",
    "phoneNumber2": "string",
    "mobileNumber": "string",
    "email": "string",
    "remark": "string",
    "address": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "zipCode": "string",
        "city": "string",
        "country": "string",
        "phoneNumber": "string"
    },
    "invoiceAddress": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "zipCode": "string",
        "city": "string",
        "country": "string",
        "phoneNumber": "string"
    },
    "deliveryAddress": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "zipCode": "string",
        "city": "string",
        "country": "string",
        "phoneNumber": "string"
    },
    "newsLetter": true,
    "externNumbers": {
        "number1": "string",
        "number2": "string",
        "number3": "string"
    },
    "birthdate": "2019-08-24",
    "modifiedDate": "2019-08-24T14:15:22Z",
    "createdDate": "2019-08-24T14:15:22Z"
}
🟠401Unauthorized
Modified at 2025-09-29 14:04:42
Previous
Customer
Next
List all customers