API documentation
User
Tenant
Feature
Entitlement
User & permissions
Settings
- Settings
- Media
- Webhook
- Notification
Payment
- Payment Method
- Transaction
- SEPA XML
- Open Banking
- Bank Account Transaction
Customer
- Customer
- Customer Address
- Customer Email
- Customer Settings
- Customer Otp
Billing
- Invoice
- Invoice Position Item
- Billing Run
Dunning
- Dunning Document
- Dunning Rule
Subscription
- Subscription
- Subscription Item
- Subscription Measurement
- Billing Group
Offers
- Offer
- Offer Recipient
- Offer Template
Catalogue
- Unit
- Measurement
- Product
- Product Family
- Price Plan
- Coupon
Checkout
- Checkout Link
- Cart
Accounting
Customer Address
Add a customer address
Add a customer address. A new address is set as default for the given address type.
Required permissions:customer:write
POST
/
customers
/
{customerId}
/
addresses
curl -X POST \
/customers/{customerId}/addresses \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"countryCode": "DE",
"vatId": "DE123456789",
"companyName": "Acme Inc.",
"street": "Musterstra\u00dfe 1",
"houseNumber": "1a",
"zip": "12345",
"city": "Berlin",
"addition": "c\/o John Doe",
"costCentre": "12345"
}'
{
"id": "<string>",
"vatId": "DE123456789",
"type": "TYPE_DEFAULT",
"default": "true",
"status": "active",
"city": "Berlin",
"zip": "12345",
"street": "Musterstraße",
"houseNumber": "1a",
"countryCode": "DE",
"companyName": "ACME Inc.",
"salutation": "Herr",
"addition": "c/o John Doe",
"costCentre": "123456789",
"firstName": "John",
"lastName": "Doe"
}
Authorizations
Value for the Authorization header parameter.
Path Parameters
CustomerAddress identifier
Body
The new CustomerAddress resource
Response
201
application/json
CustomerAddress resource created
Was this page helpful?
curl -X POST \
/customers/{customerId}/addresses \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"countryCode": "DE",
"vatId": "DE123456789",
"companyName": "Acme Inc.",
"street": "Musterstra\u00dfe 1",
"houseNumber": "1a",
"zip": "12345",
"city": "Berlin",
"addition": "c\/o John Doe",
"costCentre": "12345"
}'
{
"id": "<string>",
"vatId": "DE123456789",
"type": "TYPE_DEFAULT",
"default": "true",
"status": "active",
"city": "Berlin",
"zip": "12345",
"street": "Musterstraße",
"houseNumber": "1a",
"countryCode": "DE",
"companyName": "ACME Inc.",
"salutation": "Herr",
"addition": "c/o John Doe",
"costCentre": "123456789",
"firstName": "John",
"lastName": "Doe"
}
Assistant
Responses are generated using AI and may contain mistakes.