Getting Started
Start integrating with the Daven API v3 in minutes.
Getting Started
The Daven API v3 base URL is https://api.dashboard.davenhr.com/v3.
All requests must be authenticated using an OAuth 2.0 Bearer token. See Authentication for details.
Quick Start
- Obtain credentials — Contact your Daven account manager for your
client_idandclient_secret. - Get a token — Call
POST /oauth2/tokenwith your credentials. - Make requests — Include the token in your
Authorization: Bearer <token>header. - Handle pagination — Use
meta.next_linkto iterate through list responses.