> For the complete documentation index, see [llms.txt](https://anything-world.gitbook.io/anything-world/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://anything-world.gitbook.io/anything-world/unity/documentation/anythingworld-api/requestparameter/onsuccessaction.md).

# 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.
