Is it possible to delete individual responses? If so how? I've looked over the API methods on https://developer.surveymonkey.com/ but I'm either blind/stupid or it doesn't exist. Thanks
Related
It's possible with GraphQL (deleteIssue mutation), but doesn't appear to be possible with REST - am I missing something?
Calling delete /repos/{owner}/{repo}/issues/{issue_number} returns 404.
when i go to this link
https://api.opensea.io/api/v1/assets?asset_contract_address=0x892848074ddea461a15f337250da3ce55580ca85
It returns me some data i can use. But when i tried to fetch MY assets its not return any data from this link.
https://api.opensea.io/api/v1/assets?owner=0xA48Db0a225703b25ef95B863C1aa44929bBA7FDe
You can see my assets from this link
https://opensea.io/M1croNFT
How can i fetch my assets data with opensea api?
Most likely, your problem is that to use the api/v1/assets method. For this request you need to use the api key. This is written in the description of the method in the documentation.
GET api/v1/assets
Please Note: This API endpoint requires an API key to use. Please fill
out the API request form to obtain one. Request an API key
So, I think that if you get the key, you will be able to fulfill any request
Another option is to use queries in the test network - OPENSEA TESTNETS API. I tried to run a query there and got the correct response.
It seems that API allows to assign users to a task (called an Item in the API) using the body field responsible_uid at the add an item endpoint. However I cannot find a way to list user uids or any other way to get user details anywhere in API documentation.
Official python library todoist-python doesn't provide any way to do this either. So for now it seems I can only create tasks without assigning them to anybody, which is a bummer.
Any advise grately appreciated!
Links:
Todoist Sync API
Todoist
REST API
You should first share a project and then you can get all collaborators in the Sync request.
I am looking a way to delete and disable an item through API, but could not find any. Then I looked at the admin page code and found out API to delete and activate/deactivate in item.js https://sourceforge.net/p/easyrec/code/ci/master/tree/easyrec-web/src/main/webapp/js/item.js
Is this some internal API or can I use it in my application?
Based on the answer I got for Easyrec forum:
The mentioned call would only work if you are logged in and have the
session cookies. To deactivate an item you can use the setitemactive
API call
It is not possible to delete items.
I have the API connected and am able to upload tracks, but I haven't found anywhere that references the ability to replace an uploaded track from the API. It's available as a button on the admin of soundcloud.com, but is there any way to do it from the API?
If you'd like to replace the audio for a track, you would need to delete and then re-create it. If you give the track the same title, it should get the same permalink if that's what you're after.
Deleting and recreating a track would involve sending a DELETE request to the /tracks/{track_id} endpoint followed by a POST request to the /me/tracks endpoint with the tracks[asset_data] and tracks[title] parameters at a minimum.