diff --git a/specs/engage-voice_openapi3.json b/specs/engage-voice_openapi3.json index 4d0eb35..6971041 100644 --- a/specs/engage-voice_openapi3.json +++ b/specs/engage-voice_openapi3.json @@ -4851,6 +4851,13 @@ "quotaTargets": { "$ref": "#/components/schemas/CollectionQuotaTarget" }, + "reserveAgent": { + "description": "Agent ID to reserve this lead for during direct lead loading. If the value is blank, null, omitted, invalid, or refers to an agent without access to the account, the lead is still accepted. Invalid or inaccessible assignments are counted in failedAgentAssignment.", + "example": "980", + "nullable": true, + "type": "string", + "writeOnly": true + }, "sortCol": { "type": "string" }, @@ -9858,6 +9865,11 @@ "format": "int32", "type": "integer" }, + "failedAgentAssignment": { + "description": "Number of accepted leads whose reserveAgent value could not be assigned because the agent ID was invalid or the agent does not have access to the account.", + "format": "int32", + "type": "integer" + }, "hasDeletedLeads": { "type": "boolean" }, @@ -24842,7 +24854,15 @@ ], "responses": { "200": { - "description": "OK" + "description": "OK. The response body contains the WAV recording audio stream.", + "content": { + "audio/wav": { + "schema": { + "type": "string", + "format": "binary" + } + } + } }, "400": { "description": "Bad request", @@ -26697,4 +26717,4 @@ ] } ] -} \ No newline at end of file +}