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
varparams={applicationId: myApplicationId,experienceDomainId: myExperienceDomainId};// with callbacksclient.experienceDomain.delete(params,function(err,result){if(err){returnconsole.error(err);}console.log(result);});// with promisesclient.experienceDomain.delete(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, experienceDomain.*, or experienceDomain.delete.
varparams={applicationId: myApplicationId,experienceDomainId: myExperienceDomainId};// with callbacksclient.experienceDomain.get(params,function(err,result){if(err){returnconsole.error(err);}console.log(result);});// with promisesclient.experienceDomain.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.read, all.Organization, all.Organization.read, all.User, all.User.read, experienceDomain.*, or experienceDomain.get.
varparams={applicationId: myApplicationId,experienceDomainId: myExperienceDomainId,experienceDomain: myExperienceDomain};// with callbacksclient.experienceDomain.patch(params,function(err,result){if(err){returnconsole.error(err);}console.log(result);});// with promisesclient.experienceDomain.patch(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, experienceDomain.*, or experienceDomain.patch.