# ResubmitTransaction

### Description

This endpoint immediately tries to resubmit a stuck transaction. Sometimes a transaction fails to execute/propagate. This can be due to several factors, for example, the gas price is too low.

{% code overflow="wrap" %}

```csharp
public static VyTask<VyTransactionResultDto> ResubmitTransaction(VyResubmitTransactionRequest reqParams, VyUserAuth signingMethod)
```

{% endcode %}

{% tabs %}
{% tab title="Details" %}
**Parameters**

| reqParams     | [VyResubmitTransactionRequest](https://sdk.venly.io/sdk-reference/c-sdk-v3/object-references/wallet/vyresubmittransactionrequest) | Request data for the operation                                             |
| ------------- | --------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------- |
| signingMethod | VyUserAuth                                                                                                                        | This operation requires a valid Signing-Method from the corresponding user |

**Returns**

VyTask<[VyTransactionResultDto](https://sdk.venly.io/sdk-reference/c-sdk-v3/object-references/wallet/vytransactionresultdto)>\
Transaction resubmitted successfully.
{% endtab %}
{% endtabs %}
