Table of Contents

Description

The JsonResponseData object contains all the data of the system response to a request.

Structure

KeywordOccursTypeFormatDescription
stid0 - nstring
Server Transaction ID of the job
messages0 - nobjectMessageThe message
status1objectResponseStatusResponse status
object1objectResponseObjectResponse object
data1objectData

The data of the response. The type of the objects depends on the request and is also specified in the value of the response object of the response.

ctid0 - nstring
The CTID (Client Transaction ID) of the response.

JSON Example

{
   "stid": "20190702-STID",
   "status": {
      "code": "N400101",
      "text": "Certificate order was started successfully.",
      "type": "NOTIFY"
   },
   "object": {
      "type": "Certificate",
      "value": "domain.de"
   },
   "data": [
      {
         "id": 4297543967
      }
   ]
}