get https://yourorgsite.com/api/LegacyActivityAttachment/
Returns an instance of LegacyActivityAttachment by id
Log in to see full request history
time | status | user agent | |
---|---|---|---|
Retrieving recent requests… |
Loading…
Response
200The request was successful.
Returns an instance of LegacyActivityAttachment by id
time | status | user agent | |
---|---|---|---|
Retrieving recent requests… |
200The request was successful.
xxxxxxxxxx
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://yourorgsite.com/api/LegacyActivityAttachment/AttachmentId', 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!