You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The second param of array is not always required, its requirement is determined from the endpoint being called, see the API documentation for more details.
72
-
73
-
The third param $id is optional when used the access token will be attempted to be retrieved based on the id. When omitted the logged in user will be used.
74
-
75
-
These expect the API endpoints to be passed, the url https://graph.microsoft.com/beta/ is provided, only endpoints after this should be used ie:
Once authenticated you can call MsGraph:: with the following verbs:
122
-
123
-
```php
124
-
MsGraphAdmin::get($endpoint, $array = [])
125
-
MsGraphAdmin::post($endpoint, $array = [])
126
-
MsGraphAdmin::put($endpoint, $array = [])
127
-
MsGraphAdmin::patch($endpoint, $array = [])
128
-
MsGraphAdmin::delete($endpoint, $array = [])
129
-
```
130
-
131
-
The second param is array is not always required, its requirement is determined from the endpoint being called, see the API documentation for more details.
132
-
133
-
These expect the API endpoints to be passed, the url https://graph.microsoft.com/beta/ is provided, only endpoints after this should be used ie:
134
-
135
-
```php
136
-
MsGraphAdmin::get('users')
137
-
```
138
-
139
21
## Change log
140
22
141
23
Please see the [changelog][3] for more information on what has changed recently.
0 commit comments