okta / okta-sdk-php

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

Group IT - Get Group #17

Closed bretterer closed 4 years ago

bretterer commented 7 years ago
  1. Create a new group → POST /api/v1/groups

    const newGroup = {
    profile: {
        name: 'Get Test Group'
    }
    };
  2. Get the group by ID → GET /api/v1/groups/{{groupId}}

  3. Delete the group → DELETE /api/v1/groups/{{groupId}}

  4. Verify that the group is deleted by calling get on group (Exception thrown with 404 error message) → GET /api/v1/groups/{{groupId}}