Neue API-Version v7.4.2 wurde veröffentlicht! 🎉
REST Dokumentation
GET Kunden-Details

Einzelnen Kunden abrufen

Mit diesem Endpunkt können Sie einen einzelnen Kunden abrufen.

Request

GET /api/v1/customers/:customer_number
curl --request GET \
     --url 'https://www.zep-online.de/zepinstanz/next/api/v1/customers/11917' \
     --header 'Accept: application/json' \
     --header 'Authorization: Bearer {token}'

Response

{
	"data": {
		"customer_number": "12345",
		"name": "Musterfirma GmbH",
		"additional_name": null,
		"website": "www.musterfirma.de",
		"email": null,
		"phone": "030-1234567",
		"fax": null,
		"currency": "EUR",
		"comments": "Wichtiger Kunde - besondere Betreuung",
		"industry": "Technologie",
		"vat": "19.0000",
		"tax_number": "DE123456789",
		"iban": "DE89370400440532013000",
		"bic": "COBADEFFXXX",
		"payment_target": 30,
		"payment_target_discount": 2,
		"status": {
			"id": 1,
			"name": "Active"
		},
		"created": null,
		"modified": "2024-12-15T10:30:00.000000Z",
		"billing_procedure": true,
		"automated_invoicing": true,
		"debit_payment": null,
		"department_id": 1,
		"addresses": [
			{
				"id": 7,
				"name": "Musterfirma GmbH",
				"address": "Musterstraße 123",
				"address_line_2": null,
				"address_line_3": null,
				"zip_code": "10115",
				"city": "Berlin",
				"country": null,
				"is_default": true,
				"is_billing_address": true,
				"is_shipping_address": null,
				"email": null,
				"email_cc": null,
				"email_bcc": null,
				"country_code": null,
				"inactive": null,
				"machine_readable_invoice_version": null
			}
		],
		"managers": [],
		"categories": [],
		"dynamicAttributes": [],
		"priceTables": [
			{
				"id": 1,
				"start_date": "2024-01-01",
				"type": {
					"id": "base",
					"name": "Basispreistabelle"
				},
				"prices": [
					{
						"id": 11,
						"price_group": "Junior-Entwickler",
						"price": "900.00",
						"price_table_id": 1,
						"type": {
							"id": "tsatz",
							"name": "Tagessatz"
						}
					},
					{
						"id": 12,
						"price_group": "Senior-Entwickler",
						"price": "1200.00",
						"price_table_id": 1,
						"type": {
							"id": "tsatz",
							"name": "Tagessatz"
						}
					},
					{
						"id": 13,
						"price_group": "Junior-Entwickler",
						"price": "120.00",
						"price_table_id": 1,
						"type": {
							"id": "basehour",
							"name": "Stundensatz"
						}
					},
					{
						"id": 14,
						"price_group": "Senior-Entwickler",
						"price": "150.00",
						"price_table_id": 1,
						"type": {
							"id": "basehour",
							"name": "Stundensatz"
						}
					}
				],
				"factors": []
			}
		]
	}
}