David B
12/22/2025, 5:02 AM<http://https.post|https.post> returns a 400 response from the external system with message "invalid_client"
Am I right that outbound https doesn't require an integration record. Am I doing this right?Pete Fowler
12/22/2025, 6:35 PMDavid B
12/22/2025, 8:18 PMbattk
12/23/2025, 6:54 AMbattk
12/23/2025, 6:55 AMbattk
12/23/2025, 9:13 AMDavid B
12/23/2025, 6:48 PMDavid B
12/23/2025, 6:54 PMDavid B
12/23/2025, 6:55 PMconst requestBody = https.createSecureString({
input:
'grant_type=client_credentials' +
`&client_id=${options.clientIdKey}` +
`&client_secret=${options.clientSecretKey}` +
'&scope=public_api'
});
const response = <http://https.post|https.post>({
url: options.tokenUrl,
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: requestBody
});battk
12/24/2025, 2:35 AMDavid B
12/24/2025, 2:54 AMbattk
12/24/2025, 3:43 AM{ as the beginning of the placeholder, and } at the end of itDavid B
12/24/2025, 5:53 AM