Hello @mahoneypat.
It was my mistake when copying...
This is the "Parse JSON OUTPUT":
{"body":{"ok":true,"message":"","error_code":0,"response":[{"contractor_code":"11-2222222-3","contractor_name":"CONT NAME","plate_number":"ZZ123XX","brand":"HYUNDAI","model":"N/A","vehicle_status":"0","sign_off_date":"","status_code":2,"employees":[]}]}} But the "Create CSV Table From" is null.

Error:
The 'from' property value in the 'table' action inputs is of type 'Null'. The value must be of type 'Array'.
Edit mode:

Schema:
{
"type": "object",
"properties": {
"statusCode": {
"type": "integer"
},
"headers": {
"type": "object",
"properties": {
"Pragma": {
"type": "string"
},
"Access-Control-Allow-Origin": {
"type": "string"
},
"Access-Control-Allow-Headers": {
"type": "string"
},
"Access-Control-Allow-Methods": {
"type": "string"
},
"X-XSS-Protection": {
"type": "string"
},
"X-Frame-Options": {
"type": "string"
},
"Keep-Alive": {
"type": "string"
},
"Connection": {
"type": "string"
},
"Transfer-Encoding": {
"type": "string"
},
"Cache-Control": {
"type": "string"
},
"Date": {
"type": "string"
},
"Set-Cookie": {
"type": "string"
},
"Server": {
"type": "string"
},
"Content-Type": {
"type": "string"
},
"Expires": {
"type": "string"
},
"Content-Length": {
"type": "string"
}
}
},
"body": {
"type": "object",
"properties": {
"ok": {
"type": "boolean"
},
"message": {
"type": "string"
},
"error_code": {
"type": "integer"
},
"response": {
"type": "array",
"items": {
"type": "object",
"properties": {
"contractor_code": {
"type": "string"
},
"contractor_name": {
"type": "string"
},
"plate_number": {
"type": "string"
},
"brand": {
"type": "string"
},
"model": {
"type": "string"
},
"vehicle_status": {
"type": "string"
},
"sign_off_date": {
"type": "string"
},
"status_code": {
"type": "integer"
},
"employees": {
"type": "array"
}
},
"required": [
"contractor_code",
"contractor_name",
"plate_number",
"brand",
"model",
"vehicle_status",
"sign_off_date",
"status_code",
"employees"
]
}
}
}
}
}
}
I do not know what is happening...