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
Details on the various actions that can be performed on the
Experience Domains resource, including the expected
parameters and the potential responses.
varparams={applicationId: myApplicationId};// with callbacksclient.experienceDomains.get(params,function(err,result){if(err){returnconsole.error(err);}console.log(result);});// with promisesclient.experienceDomains.get(params).then(console.log).catch(console.error);
Authentication
The client must be configured with a valid api access token to call this
action. The token must include at least one of the following scopes:
all.Application, all.Application.cli, all.Application.read, all.Organization, all.Organization.read, all.User, all.User.cli, all.User.read, experienceDomains.*, or experienceDomains.get.
varparams={applicationId: myApplicationId,experienceDomain: myExperienceDomain};// with callbacksclient.experienceDomains.post(params,function(err,result){if(err){returnconsole.error(err);}console.log(result);});// with promisesclient.experienceDomains.post(params).then(console.log).catch(console.error);
Authentication
The client must be configured with a valid api access token to call this
action. The token must include at least one of the following scopes:
all.Application, all.Organization, all.User, experienceDomains.*, or experienceDomains.post.