Skip to main content

ErrorResponse

The error response returned by the PCA getBids endpoint. FCC returns this shape for 4xx validation errors and 5xx server errors, echoing the request id and including error messages and a no-bid reason code.

idstring

The unique ID of the ad request, echoed back from the request object.

ext object

Extension object carrying detailed error messages.

errorsstring[]

List of human-readable validation or processing error messages.

nbrinteger

No-bid reason code indicating why FCC did not return an ad.

  • 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
}