ACCEPTED constant

int const ACCEPTED

The request has been received but not yet acted upon. It is non-committal, meaning that there is no way in HTTP to later send an asynchronous response indicating the outcome of processing the request. It is intended for cases where another process or server handles the request, or for batch processing.

https://tools.ietf.org/html/rfc7231#section-6.3.3

Implementation

static const int ACCEPTED = 202;