post https://yourorgsite.com/api/Tag/_execute
Executes an operation of Tag
Log in to see full request history
Responses
200The request was successful.
201The resource was successfully created.
202The resource was asynchronously created.
Executes an operation of Tag
200The request was successful.
201The resource was successfully created.
202The resource was asynchronously created.
xxxxxxxxxx
13const options = {
method: 'POST',
headers: {accept: 'application/json', 'content-type': 'application/json'},
body: JSON.stringify({
$type: 'Asi.Soa.Core.DataContracts.GenericExecuteRequest, Asi.Contracts',
UseJson: false
})
};
fetch('https://yourorgsite.com/api/Tag/_execute', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
Try It!
to start a request and see the response here!