GlobKurier
  1. User
GlobKurier
  • Integration via the Globkurier API
    • Introduction (PL)
    • Introduction (EN)
    • Integration Strategy (PL)
    • Integration Strategy (EN)
    • Full Integration (PL)
    • Full Integration (EN)
    • Fast order Integration (PL)
    • Fast order Integration (EN)
    • Pricing Summary before ordering (PL)
    • Pricing Summary before ordering (EN)
    • Shipment search (PL)
    • Shipment search (EN)
    • Crossborder / Points (PL)
    • Crossborder / Points (EN)
    • Labels (PL)
    • Labels (EN)
    • Tracking (PL)
    • Tracking (EN)
    • Get carrier data (PL)
    • Get carrier data (EN)
    • Addon categories (PL)
    • Addon categories (EN)
    • Order with customs (PL)
    • FAQ (PL)
    • FAQ (EN)
    • Endpoints
      • Dictionary
        • Addresses
          • Get list of countries
          • Get states for country
          • Get shipment/receiving points
          • Get Polish addresses
          • Get list of cities
        • Carriers
          • Get available carrier list
          • Get shipment/receiving points
        • Finance
          • Get available currency list
        • Orders
          • Get available order content
        • Agreements
          • Get agreements
      • Authentication
        • Generate token
        • Refresh token
        • Remove token
      • Fast order
        • Simplified order placement (bestprice)
      • Full integration
        • Get products
        • Get addons for product
        • Get discount code information
        • Get available courier arrival times to the sender for the shipment
        • Get payments
        • Get bank account numbers
        • Get order price
        • Get custom required fields
        • Create order
        • Partial order validation
        • Create order for courier pick up
      • Payments
        • Get list of available methods
        • Generate form data for online order payment
        • Prepaid top-up
        • Changing payment method for online order
      • Orders
        • Get order
        • Get list of orders for the protocol
        • Get protocol
        • Get labels
        • Get shipment statuses
      • User
        • Get user data
          GET
        • Get user coupon data
          GET
        • Register user
          POST
        • Edit user
          PUT
        • Get company information
          GET
        • Get user invoice list
          GET
        • Get invoice
          GET
        • Get compressed list of invoices
          GET
        • Get invoice email
          GET
        • Get account and payment statistics
          GET
        • Get list of payment methods
          GET
        • Get selected payment method
          GET
        • Create selected payment method
          POST
        • Remove selected payment method
          DELETE
        • Get order statistics
          GET
        • Get list of customs documents for the order
          GET
        • Get list of options for saving user preferences
          GET
        • Save user preferences
          PUT
        • Send SMS with a verification code
          POST
      • Users
        • AddressBook
          • Edit sender contact in address book
          • Add sender contact in address book
          • Delete sender contact from address book
          • Edit receiver contact in address book
          • Add receiver contact in address book
          • Delete receiver contact from address book
          • Get senders contacts from address book
          • Get receiver contacts from address book
          • Import sender contacts to address book
          • Import receiver contacts to address book
        • get company for user
        • Update user currency
        • User return carrier list
        • Manage user return carrier list
      • AddressBook
        • Add sender contact to address book
        • Add receiver contact to address book
        • Get senders address book
        • Get receivers address book
        • Edit sender contact into address book
        • Edit receiver contact into address book
        • Delete sender contact from address book
        • Delete receiver contact from address book Copy
      • Order templates
        • Add template
        • Get tempalate list
        • Edit template
        • Delete template
  1. User

Edit user

Developing
Testing Env
https://test.api.globkurier.pl
Testing Env
https://test.api.globkurier.pl
PUT
/v1/user
The resource returns status 204 after saving data.

Request

Header Params

Body Params application/json

Example
{
    "address": {
        "type": "PERSON",
        "name": "Test",
        "surname": "Testowy",
        "city": "Testowo",
        "street": "Testowa Ulica",
        "houseNumber": "1x",
        "apartmentNumber": "2a",
        "postCode": "01-001",
        "countryId": 1,
        "phone": "48123123123",
        "email": "newEmail@test.pl"
    },
    "agreements": {
        "sendPaperInvoices": true,
        "sendDiscountCodes": true,
        "sendLabel": true
    },
    "cashOnDelivery": {
        "bankAccountNumber": "PL52102051387825000705064082",
        "name": "newCodName",
        "addressLine1": "newCodFirstAddressLine",
        "addressLine2": "newCodSecondAddressLine"
    },
    "currency": "PLN",
    "invoicesToOtherEmail": "otherEmail@acme.com",
    "labelsToOtherEmail": "otherEmail@acme.com"
}

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 PUT 'https://test.api.globkurier.pl/v1/user' \
--header 'Accept-Language: pl' \
--header 'X-Auth-Token;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "address": {
        "type": "PERSON",
        "name": "Test",
        "surname": "Testowy",
        "city": "Testowo",
        "street": "Testowa Ulica",
        "houseNumber": "1x",
        "apartmentNumber": "2a",
        "postCode": "01-001",
        "countryId": 1,
        "phone": "48123123123",
        "email": "newEmail@test.pl"
    },
    "agreements": {
        "sendPaperInvoices": true,
        "sendDiscountCodes": true,
        "sendLabel": true
    },
    "cashOnDelivery": {
        "bankAccountNumber": "PL52102051387825000705064082",
        "name": "newCodName",
        "addressLine1": "newCodFirstAddressLine",
        "addressLine2": "newCodSecondAddressLine"
    },
    "currency": "PLN",
    "invoicesToOtherEmail": "otherEmail@acme.com",
    "labelsToOtherEmail": "otherEmail@acme.com"
}'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-07-17 05:09:12
Previous
Register user
Next
Get company information
Built with