Skip to main content

ErrorResponse

Error response FCC returns when the getBids request fails validation, authentication, or encounters a server error. Carries the request id, a no-bid reason code, and the list of validation errors.

idstring

Unique id of the failed ad response. Corresponds to the request id.

ext object

Extension object carrying the list of validation error messages.

errorsstring[]

List of validation error messages describing why FCC rejected the request.

nbrinteger

No-bid reason code. Present on all error responses.

  • 0: Unknown exception (HTTP 500)
  • 1: Technical error (HTTP 5xx)
  • 2: Validation failure (HTTP 400)

Possible values: [0, 1, 2]

ErrorResponse
{
"id": "string",
"ext": {
"errors": [
"string"
]
},
"nbr": 0
}