Hi,
I'm wondering if someone can help me out as I've never experienced this before. I'm working with the Ceridian Dayforce API and am using a custom connector. I am trying to retrieve the bearer token and am receiving an {"error":"invalid_client"} on the HTTP action. When I follow the API requirements with postman I'm able to retrieve the token. When I use the HTTP action I get this error.


Dayforce API Token-Based Auth documentation
Request a token
An authentication token can be retrieved with an API call to Dayforce Identity servers.
The call is a POST call on the following URLs:
You will need to join the following form body to your call:
- Grant_type: value is always: password
- CompanyId: Client namespace, used to connect to Dayforce UI or APIs
- Username: Name of the Dayforce user dedicated to Web service calls
- Password: Password of the specified user
- Client_Id: Scope of the token, the value is always: Dayforce.HCMAnywhere.Client
The content type of this body should be application/x-www-form-urlencoded.
Dayforce Identity server will check the credentials provided in the request and respond with JSON Web Token containing the token, its scope and its validity duration (in seconds).