|
Macros for SAS Application Developers
https://github.com/sasjs/core |
Creates a dataset with a list of group members. More...
Go to the source code of this file.
First, be sure you have an access token (which requires an app token)
Using the macros here:
filename mc url "https://raw.githubusercontent.com/sasjs/core/main/all.sas"; %inc mc;
Now we can run the macro!
%mv_getgroupmembers(All Users)
outputs:
ordinal_root num, ordinal_items num, version num, id char(43), name char(43), providerId char(5), implicit num
| [in] | group | Group id for which to return group members |
| [in] | access_token_var= | (ACCESS_TOKEN) The global macro variable to contain the access token |
| [in] | grant_type= | (sas_services) valid values are "password" or "authorization_code" (unquoted). |
| [out] | outds= | (work.viyagroupmembers) The library.dataset to be created that contains the list of group members |
Definition in file mv_getgroupmembers.sas.