Hey All,
I am running into an issue actions with my GPT.
The action is a POST with some required fields.
In my schema i have the following:
Status:
type: integer
description: Statuscode
default: “060”
required:
- Status
It needs to be 060 no matter what, it’s just an required field
But when i try the GPT it ALWAYS uses “60”
Example call:
“params”: {
“Status”: 60,
“Description”: “TEST”,
}
And i can’t get it to work properly.
Does anyone happen to run into this?