Clients API returns CORS and status 405

Hi,

I’ve just tried to use the endpoint for clients (https://developer.clockify.me/api/v1/workspaces/{workspaceId}/clients) with my addon token, but it returns a cors error followed by a status 405.

Here is the redacted fetch that I used for clarity:

const response = await fetch(`https://developer.clockify.me/v1/workspaces/${workspaceId}/clients`, {
      headers: {
          "X-Addon-Token": authToken,
      },
});

I noticed that the /api part of the URL was missing. Sending the request to https://developer.clockify.me/api/v1/workspaces/${workspaceId}/clients results in:

{
    "message": "API is not accessible.",
    "code": 401
}

Hi mittlus,

Thank you for your message. We’re already looking into it. We’ll try to solve it asap.

Hi, just checking in if theres any news on this