Skip to content

List FGL template commands​

GET
/api/v2/fgl-template/{templateId}/commands

Get all commands for a specific FGL template

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

templateId*

FGL Template ID

Type
integer
Required

Responses​

A list of FGL template commands

application/json
JSON
{
  
"data": [
  
],
  
"total": 1
}

Playground​

Authorization
Variables
Key
Value

Samples​


Create FGL template command​

POST
/api/v2/fgl-template/{templateId}/commands

Create a command for a specific FGL template

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

templateId*

FGL Template ID

Type
integer
Required

Request Body​

application/json
JSON
"string"

Responses​

Created FGL command object

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Get FGL template command by ID​

GET
/api/v2/fgl-template/{templateId}/commands/{id}

Get a single command by ID for a specific FGL template

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

templateId*

FGL Template ID

Type
integer
Required
id*

FGL Command ID

Type
integer
Required

Responses​

FGL command object

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization
Variables
Key
Value

Samples​


Delete FGL template command​

DELETE
/api/v2/fgl-template/{templateId}/commands/{id}

Delete a command from a specific FGL template

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

templateId*

FGL Template ID

Type
integer
Required
id*

FGL Command ID

Type
integer
Required

Responses​

Deleted successfully

Playground​

Authorization
Variables
Key
Value

Samples​


Update FGL template command​

PATCH
/api/v2/fgl-template/{templateId}/commands/{id}

Update a command for a specific FGL template

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

templateId*

FGL Template ID

Type
integer
Required
id*

FGL Command ID

Type
integer
Required

Request Body​

application/json
JSON
"string"

Responses​

Updated FGL command object

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Bulk delete FGL template commands​

POST
/api/v2/fgl-template/{templateId}/commands/bulk-delete

Delete multiple commands from a specific FGL template

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

templateId*

FGL Template ID

Type
integer
Required

Request Body​

application/json
JSON
"string"

Responses​

Deleted successfully

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Powered by VitePress OpenAPI