Hi,
I’m wondering if there is any way to debug the response received by Okta to an inline hook request. I’ve tested the inline hook rest api through postman and the response looks valid (listed below). I’ve also been able to test the okta inline hook functionality successfully through another mock api.
The inline hook fails with the following error.
[Could not deserialize inline hook response due to error at Line 1 Column 10]
However, the response to the inline hook invocation json response is valid and the character at column 10 is the colon ( in the raw data.
Any suggestions to debug would be greatly appreciated.
Thanks,
Shiraz
{
“result”: “SUCCESS”,
“commands”: [
{
“type”: “com.okta.user.profile.update”,
“value”: {
“state”: “VIC”,
“postCode”: “3125”,
“telephone”: “(03) 9274 0910”,
“extensionAttribute5”: “1203”,
“extensionAttribute6”: “1101”,
“extensionAttribute7”: “1001”,
“extensionAttribute8”: “R12”,
“extensionAttribute9”: “OPS03”,
“extensionAttribute10”: null
}
},
{
“result”: “CREATE”,
“type”: “com.okta.action.update.import”
}
],
“debugContext”: {
“stuff”: “The user profile was updated”
}
}