New API version v6.12.5 has been released! 🎉
REST Documentation
Quickstart

Quickstart

In this guide, you will learn how to set up ZEP's REST API and create your first request. You will also find out where to go next to find all the information you need to take full advantage of our powerful REST API.

💡

Before you can make requests to the REST API, you must generate your Bearer Token in the ZEP administration.

Guide

Activate "ZEP interfaces" module

If you have not yet worked with our SOAP or REST API, you must first activate the ZEP interfaces module in your ZEP. You can do this yourself in the self-service tool of your ZEP administration.

The first request to the API

After you have activated the module and generated a Bearer Token, you can send your first request to the API. Below you can see how to send a GET request to the "Customers" endpoint to get a list of all your customers.

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

Next steps

You have activated the module in your ZEP and generated a token. You have made your first request to the API and received a list of your customers. Here you will find some links that could be useful for the further use of our REST API: