okta / okta-sdk-php

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

Group IT - Search Groups #19

Closed bretterer closed 4 years ago

bretterer commented 7 years ago
  1. Create a new group → POST /api/v1/groups
    const newGroup = {
    profile: {
        name: 'Search Test Group'
    }
    };
  2. Search the group by name with query parameter → GET /api/v1/groups?q=Search
  3. Delete the group → DELETE /api/v1/groups/{{groupId}}