Skip to content
Home » Local API V2 – Profile Groups Interface

Local API V2 – Profile Groups Interface

List Profile Groups

Endpoint

GET /openapi/v2/profile-groups

Returns a list of Profile Groups.

Query Parameters

NameTypeRequiredDescription
requeststringYesParameters for listing Profile Groups.

Response Parameters

data.list contains the list of Profile Groups:

NameTypeDescription
idstringProfile Group ID.
namestringProfile Group name.
remarkstringNotes.

Create a Profile Group

Endpoint

POST /openapi/v2/profile-groups

Creates a Profile Group.

Request Parameters

NameTypeRequiredDescription
namestringNoProfile Group name.
remarkstringNoNotes.

Request Example

{
  "name": "automation group",
  "remark": "created by Local API V2"
}

Get Profile Group Details

Endpoint

GET /openapi/v2/profile-groups/{groupId}

Returns the details of a Profile Group.

Path Parameters

NameTypeRequiredDescription
groupIdstringYesProfile Group ID.

Update a Profile Group

Endpoint

PATCH /openapi/v2/profile-groups/{groupId}

Updates a Profile Group.

Path Parameters

NameTypeRequiredDescription
groupIdstringYesProfile Group ID.

Request Parameters

NameTypeRequiredDescription
namestringNoProfile Group name.
remarkstringNoNotes.

Delete a Profile Group

Endpoint

DELETE /openapi/v2/profile-groups/{groupId}

Deletes a Profile Group. Before deleting it, confirm that the Profile Group is no longer needed.

Path Parameters

NameTypeRequiredDescription
groupIdstringYesProfile Group ID.