const cJSON * BearHttpsRequest_create_cJSONPayloadObject(BearHttpsRequest *self);Creates a new cJSON object and stores it internally in the request for later use as the request body. This is useful for building JSON payloads programmatically. The returned JSON object is managed by the request and will be freed automatically.
self: Pointer to theBearHttpsRequestobject
A pointer to the newly created cJSON object, or NULL if creation fails. The returned pointer is const and should not be freed manually.