public static AccountCreationResponse Create(string apiBaseUrl, int accountId, string authorizationHeaderValue, AccountCreationRequestUser user)
        {
            var resource     = $"v2/accounts/{accountId}/users";
            var headerParams = new Dictionary <string, string> {
                { "Content-Type", "application/json" }, { "Authorization", authorizationHeaderValue }
            };
            var users = new List <AccountCreationRequestUser> {
                user
            };
            var postBody = new Dictionary <string, object> {
                { "newUsers", users }
            };
            var result = RestResponseGetter <AccountCreationResponse> .GetPostResponse(apiBaseUrl, resource, headerParams, body : postBody);

            return(result);
        }
예제 #2
0
        public static string Get(string clientId, string userId, string oAuthBasePath, string privateKeyText)
        {
            var accessToken  = AccessTokenCreator.Create(clientId, userId, oAuthBasePath, privateKeyText);
            var baseUrl      = $"https://{oAuthBasePath}";
            var resource     = "oauth/token";
            var headerParams = new Dictionary <string, string> {
                { "Content-Type", "application/x-www-form-urlencoded" }
            };
            var formParams = new Dictionary <string, string> {
                { "grant_type", "urn:ietf:params:oauth:grant-type:jwt-bearer" }, { "assertion", accessToken }
            };
            var response = RestResponseGetter <OAuthTokenResponse> .GetPostResponse(baseUrl, resource, headerParams, formParams);

            var result = $"{response.token_type} {response.access_token}";

            return(result);
        }