okta / okta-sdk-php

PHP SDK for the Okta API
Apache License 2.0
38 stars 71 forks source link

Group IT - List Groups #18

Closed bretterer closed 4 years ago

bretterer commented 7 years ago
  1. Create a new group → POST /api/v1/groups
    const newGroup = {
    profile: {
        name: 'List Test Group'
    }
    };
  2. List all groups and find the group created → GET /api/v1/groups
  3. Delete the group → DELETE /api/v1/groups/{{groupId}}