Printags Public
    • Accounts
      • Get current account
        GET
      • Get an account by ID
        GET
    • Orders
      • Find orders
        GET
      • Get an order by ID
        GET
      • Create a new order
        POST
      • Validate an order
        POST
    • Files
      • Upload a file
        POST
      • Get a file by ID
        GET
    • Statuses
      • Get all statuses
        GET
    • Schemas
      • Account
      • Address
      • Customer
      • Model
      • Product
      • ProductGroup
      • SubscriptionPlan
      • Shipping
      • Order
      • NFC

    Address

    Address can be either a standard address or a service point (relay point). Use 'address' for home delivery or 'servicePoint' for relay point delivery.

    {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "name": "Jean Dupont",
        "phone": "+33612345678",
        "email": "jean.dupont@example.fr",
        "address": {
            "addressLine1": "10 rue de la République",
            "addressLine2": "Appartement 123",
            "city": "Paris",
            "postcode": "75001",
            "countryCode": "FR"
        },
        "servicePoint": {
            "id": "12624766",
            "country": "LU"
        }
    }
    Built with