The dashboard ingestion layer needs to push fresh IVR call logs into Genesys via the outbound module, so we’re hitting POST /api/v2/outbound/contactlists from a Python script. The request body follows the standard schema with name, type, contactListType, and a contacts array containing id, phone, and firstName fields. Every run returns a 400 with errorCode: invalid_value and message: Invalid value for field contacts. The payload validates fine against the Swagger spec locally, and the auth token has outbound:contactlists:write scope. We’ve stripped the JSON down to a single record just to isolate the fault, but the gateway still rejects it.
Switching contactListType from UPLOAD to STATIC doesn’t change the response. The server clock on our Manila VM is synced to NTP, so timestamp drift isn’t causing validation mismatches. We’ve tried wrapping the phone numbers in E.164 format and dropping the id field entirely, yet the same invalid_value block keeps coming back. Headers are locked to application/json for both Accept and Content-Type. Logs just cut off there. No inner details from the serializer.