Postmark\PostmarkClient::retryInboundMessageHook PHP Method

retryInboundMessageHook() public method

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.
return Postmark\Models\DynamicResponseModel
    function retryInboundMessageHook($id)
    {
        return new DynamicResponseModel($this->processRestRequest('PUT', "/messages/inbound/{$id}/retry"));
    }