> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Commands for MarketPlaceApplications

> This endpoint lets you get the list of available commands for Market Place Application records.

# Commands for MarketPlaceApplications

This endpoint lets you get the list of available commands for Market Place Application records.

## Authentication

<Note>
  This endpoint requires OAuth2 authentication. Include a valid bearer token in the `Authorization` header.
</Note>

## Query Parameters

<ParamField query="id" type="integer (int32)">
  If provided, only commands available for this Market Place Application will be returned.
</ParamField>

## Response

```json Example Response theme={null}
[
  {
    "Key": "COMMAND_KEY_1",
    "Name": "Command name",
    "AppliesOnlyToMultipleEntities": false,
    "DisplayInDropdown": false,
    "DisplayInDropdownV2": true,
    "AppliesOnlyToOneEntity": true,
    "AppliesOnlyToTwoEntities": false,
    "DisplayInGrid": false,
    "Icon": "/Content/Themes/Admin/Images/Icons/Fugue/gear.png",
    "NeedsEntitiesToRun": true,
    "Order": 8,
    "RequiresParameters": [
      {
        "Name": "Parameter name",
        "Type": "parameterType"
      }
    ]
  }
]
```

## Example Request

```bash theme={null}
curl -X GET \
  "https://spaces.nexudus.com/api/apps/marketplaceapplications/commands" \
  -H "Authorization: Bearer YOUR_TOKEN"
```
