globalGroupTrigger method

Future<bool> globalGroupTrigger(
  1. String id
)
inherited

globalGroupTrigger -> /v1/group/{id}

Triggers the specified global group.

PARAMETERS

id : The ID of the required global group, either name, index or UUID.

  • Example (by_name): Verse 1
  • Example (by_index): 0
  • Example (by_uuid): 3C39C433-5C18-4F51-B357-55BB870227C4

RESPONSE 204:

The request was processed successfully. There is no response body.

content-type: NONE

Implementation

Future<bool> globalGroupTrigger(String id) async {
  String url = '/v1/group/$id';

  return await call('get', url, httpAccept: 'application/json');
}