[Server] Requests Authorization and Rate Limiting

  1. You need a token to make requests to our API.

  2. Jira also requires auth to handle requests. Either OAuth or basic.

NO RATE limiting for Server Version. Please handle it on your side.

  1. Here is an example of a curl request with basic Auth (user: admin, pass: admin)

curl --location --request GET 'https://test.example.com/rest/oboard/1.0/api/v1/objectives?workspaceIds=2&typeIds=3' \ --header 'API-Token: fe2385091391dcaab2944d290f2d638a53ddf5a95fbe55a27094d55248cfd0' \ --header 'Authorization: Basic YWRtaW46YWRtaW4='

2. And pure HTTP request

GET /api/v1/objectives?typeIds=3&typeIds=1&workspaceIds=2&typeIds=2 HTTP/1.1 Host: https://test.example.com/rest/oboard/1.0 API-Token: fe2385091391dcaab2944d290f2d638a53ddf5a95fbe55a27094d55248cfd0 Authorization: Basic YWRtaW46YWRtaW4=

3. ✅Remember you can always use our postman collection and generate code snippets there.