Where can I put the token for the Auth Protocol-Digest on Data forward

I was adding a new data forwarding setting that will post to an API whenever a new case is created.
The API needs an Auth token to work . There is No text field to put that token on the page.
How can I set a data forwarding setting for this kind of Auth types?

Hi @andyasne,

Thank you for including an image. It was very helpful for diagnosing the problem. I opened the URL in a web browser and looked at the response headers:

Server: nginx/1.10.3 (Ubuntu)
Date: Mon, 04 May 2020 12:28:34 GMT
Content-Length: 0
Connection: keep-alive
WWW-Authenticate: Bearer

The "WWW-Authenticate: Bearer" header suggests it probably uses OAuth 2.0 authentication (which is different from Basic or Digest authentication).

Data Forwarding does not currently support OAuth 2.0.

It is on a to-do list though. Is there any documentation for the API? It would be useful to know which OAuth 2.0 grant types it supports, and what API endpoints clients must use to request and refresh tokens.

Until Data Forwarding supports OAuth 2.0, does the API support Basic or Digest auth?

Cheers,

Norman