|
|||
Member Roster Import Using cURLYou can upload members' data without using the Member Account service user interface. To do this, you have to create an application user with administrator permissions and retrieve its credentials. To create an application user for the Member Account service:
Note You do not need to create a new application user each time you upload data. You can use one and the same application user with the same credentials for all your uploads. To upload members' data using cURL:
curl -F "file=@{ZipFileName}" -H "Authorization: CLAPP {AppUserCredentials}" -ssl -D - https://{YourOrganization’sMemberAccountServiceURL}/admin/api/members/import
Copy
Example
- or - If you access the Member Account service through a proxy server or a firewall, use the option -ssl-no-revoke: curl –verbose –ssl-no-revoke -F "file=@{ZipFileName}" -H "Authorization: CLAPP {AppUserCredentials}" -ssl -D - https://{YourOrganization’sMemberAccountServiceURL}/admin/api/members/import Copy
Example
|