post https://api.moralis-streams.com/streams/evm//status
Updates the status of specific evm stream.
Log in to see full request history
Response
Updates the status of specific evm stream.
xxxxxxxxxx
16import Moralis from "moralis";
​
Moralis.start({
apiKey: 'YOUR_API_KEY',
// ...and any other configuration
});
​
const id = "id-1";
const status = "paused";
​
const { result } = await Moralis.Streams.updateStatus({
id,
status,
});
​
console.log(result);
Try It!
to start a request and see the response here!