Wie funktioniert die offene API von Staffomatic und was sind und wie funktionieren Webhooks?

Unsere API ist offen für Kunden*innen und ermöglicht so die Anbindung externer Systeme via Webhooks, also Events in Staffomatic oder dem externen System.

Die Webhooks findet man unter "Integrationen". Für die Anbindung externer Systeme sind Datenbank und oder Codiersprach-Kenntnisse erforderlich. Daher ist die Anleitung und alle folgenden Informationen auf Englisch:

https://developers.staffomatic.com/

 

To help with your API Problems, we need the following information:

NOTE: Please ommit any password's in your descriptions. If you send any by accident, make sure to change your password immediately.

1. What is the request URL ?

Example:

curl -u email:*** \
  -H 'Content-Type: application/json' \
  -H 'User-Agent: MyApp (yourname@example.com)' \
  -d '{ "name": "My new Loction!" }' \
  -v \
  https://api.staffomaticapp.com/v3/demo/locations.json

2. What parameter did you pass in the request ?

Example:

{ "name": "My new Loction!" }

3. What is the API Response ?

Example:

HTTP/1.1 422 Unprocessable Entity
{"errors":{"name":["must be entered "]}}

or:

HTTP/1.1 404 Not Found
{"error": "not_found"}

4. What is the Problem, what did you expect differently?

 

 

 

Please contact us with the above information.