put https://yourorgsite.com/api/PartyDuplicate/
Updates an instance of PartyDuplicate by id
Log in to see full request history
time | status | user agent | |
---|---|---|---|
Retrieving recent requests… |
Loading…
Response
200The request was successful.
Updates an instance of PartyDuplicate by id
time | status | user agent | |
---|---|---|---|
Retrieving recent requests… |
200The request was successful.
xxxxxxxxxx
20const options = {
method: 'PUT',
headers: {accept: 'application/json', 'content-type': 'application/json'},
body: JSON.stringify({
$type: 'Asi.Soa.Membership.DataContracts.PartyDuplicateData, Asi.Contracts',
Party: {
$type: 'Asi.Soa.Membership.DataContracts.PartyReferenceData, Asi.Contracts',
IsMarkedForDelete: false,
Status: {
$type: 'Asi.Soa.Membership.DataContracts.PartyStatusData, Asi.Contracts',
ActiveStatus: 'Active'
}
}
})
};
fetch('https://yourorgsite.com/api/PartyDuplicate/PartyDuplicateId', 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!