# OnSuccessAction

**Declaration**

```csharp
public static RequestParameterOption OnSuccessAction(Action action)
```

#### Parameters

| action | Action with void return type that will be invoked on successful request. |
| ------ | ------------------------------------------------------------------------ |

#### Declaration

```csharp
public static RequestParameterOption OnSuccessAction(Action<CallbackInfo> action)
```

**Parameters**

| action | Action with CallbackInfo return type that will be invoked on successful object request. |
| ------ | --------------------------------------------------------------------------------------- |

#### Description

Pass action into make process that will be invoked on a successful model creation.
