---
title: Status
description: An HTTP response status.
component: pinggateway
version: 2026
page_id: pinggateway:reference:Status
canonical_url: https://docs.pingidentity.com/pinggateway/2026/reference/Status.html
revdate: 2025-06-02T18:01:47Z
section_ids:
  Status-properties: Properties
  Status-moreinfo: More information
---

# Status

An HTTP response status.

## Properties

* `"code"`: *integer*

  Three-digit integer reflecting the HTTP status code.

* `"family"`: *[enumeration](preface.html#definition-enumeration)*

  Family Enum value representing the class of response that corresponds to the code:

  * `Family.INFORMATIONAL`

    Status code reflects a provisional, informational response: 1xx.

  * `Family.SUCCESSFUL`

    The server received, understood, accepted and processed the request successfully. Status code: 2xx.

  * `Family.REDIRECTION`

    Status code indicates that the client must take additional action to complete the request: 3xx.

  * `Family.CLIENT_ERROR`

    Status code reflects a client error: 4xx.

  * `Family.SERVER_ERROR`

    Status code indicates a server-side error: 5xx.

  * `Family.UNKNOWN`

    Status code doesn't belong to one of the known families: 600+.

* `"reasonPhrase"`: *[string](preface.html#definition-string)*

  The human-readable reason-phrase corresponding to the status code.

* `"isClientError"`: *[boolean](preface.html#definition-boolean)*

  True if Family.CLIENT\_ERROR.

* `"isInformational"`: *[boolean](preface.html#definition-boolean)*

  True if Family.INFORMATIONAL.

* `"isRedirection"`: *[boolean](preface.html#definition-boolean)*

  True if Family.REDIRECTION.

* `"isServerError"`: *[boolean](preface.html#definition-boolean)*

  True if Family.SERVER\_ERROR.

* `"isSuccessful"`: *[boolean](preface.html#definition-boolean)*

  True if Family.SUCCESSFUL.

## More information

[Response Status Codes](https://datatracker.ietf.org/doc/html/rfc7231#section-6).

[org.forgerock.http.protocol.Status](../_attachments/apidocs/org/forgerock/http/protocol/Status.html)
