github.com/grokify/go-ringcentral-client@v0.3.31/codegen/specs-engagevoice_v3.0.0/openapi-spec_users.json (about) 1 { 2 "openapi":"3.0.0", 3 "info":{ 4 "description":"", 5 "version":"1.0", 6 "title":"RingCentral Engage Voice API", 7 "termsOfService":"https://developers.ringcentral.com" 8 }, 9 "tags":[ 10 { 11 "name":"Users" 12 } 13 ], 14 "paths":{ 15 "/admin/users":{ 16 "get":{ 17 "tags":[ 18 "Users" 19 ], 20 "summary":"Get Users", 21 "description":"Returns a listing of all users that a user has access to", 22 "operationId":"getUsers", 23 "responses":{ 24 "200":{ 25 "description":"Success", 26 "content":{ 27 "application/json":{ 28 "schema":{ 29 "type":"array", 30 "items":{ 31 "$ref":"#/components/schemas/User" 32 } 33 } 34 } 35 } 36 } 37 } 38 } 39 } 40 }, 41 "servers":[ 42 { 43 "url":"https://portal.vacd.biz/api/v1" 44 } 45 ], 46 "components":{ 47 "securitySchemes":{ 48 "bearerAuth":{ 49 "type":"http", 50 "scheme":"bearer" 51 } 52 }, 53 "schemas":{ 54 "User":{ 55 "type":"object", 56 "description":"Children field is still needed", 57 "required":["userId"], 58 "properties":{ 59 "userId":{ 60 "type":"integer", 61 "format":"int64" 62 }, 63 "userName":{ 64 "type":"string" 65 }, 66 "firstName":{ 67 "type":"string" 68 }, 69 "lastName":{ 70 "type":"string" 71 }, 72 "enabled":{ 73 "type":"boolean" 74 }, 75 "parentPath":{ 76 "type":"string" 77 } 78 } 79 } 80 } 81 } 82 }