property OnRequestSuccess: TScRestRequestEvent;
type
TScRestRequestEvent = procedure(const RestRequest: TScRestRequest) of object;
Description
Occurs after a request has been successfully executed.
The OnRequestSuccess event can be used to process the response, log the request, or perform other post-execution tasks.
RestRequest represents the completed request to the endpoint. The result of the request is available in the RestRequest.RestResponse property.