Postmark\PostmarkClient::retryInboundMessageHook PHP Метод

retryInboundMessageHook() публичный Метод

Request that Postmark retry POSTing the specified message to the Server's Inbound Hook.
public retryInboundMessageHook ( integer $id ) : Postmark\Models\DynamicResponseModel
$id integer The ID for a message that we wish retry the inbound hook for.
Результат Postmark\Models\DynamicResponseModel
    function retryInboundMessageHook($id)
    {
        return new DynamicResponseModel($this->processRestRequest('PUT', "/messages/inbound/{$id}/retry"));
    }