post https://yourorgsite.com/api/BillingLog
Creates an instance of BillingLog
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 BillingLog
200The request was successful.
201The resource was successfully created.
202The resource was asynchronously created.
xxxxxxxxxx
14const options = {
method: 'POST',
headers: {accept: 'application/json', 'content-type': 'application/json'},
body: JSON.stringify({
$type: 'Asi.Soa.Commerce.DataContracts.BillingLogData, Asi.Contracts',
AccountingMethod: 'Cash',
UpdateInformation: {$type: 'Asi.Soa.Core.DataContracts.EntityUpdateInformationData, Asi.Contracts'}
})
};
fetch('https://yourorgsite.com/api/BillingLog', 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!