post https://yourorgsite.com/api/DataVaultLog
Creates an instance of DataVaultLog
Log in to see full request history
Responses
200The request was successful.
201The resource was successfully created.
202The resource was asynchronously created.
Creates an instance of DataVaultLog
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.Commerce.DataContracts.Autopay.DataVaultLogData, Asi.Contracts',
UpdateInformation: {$type: 'Asi.Soa.Core.DataContracts.EntityUpdateInformationData, Asi.Contracts'}
})
};
fetch('https://yourorgsite.com/api/DataVaultLog', 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!