Skip to main content
All CollectionsProxy Configuration
How to Reset Your Proxy Session
How to Reset Your Proxy Session

Learn how to reset your proxy session

SimplyNode Support avatar
Written by SimplyNode Support
Updated over a week ago

If you need to reset your proxy session for any reason (e.g., IP refresh), you can do so easily using our session reset endpoint. Just follow the steps below:

βœ… Step-by-Step Guide

1. Get your Proxy Login

Your Proxy Login is the unique identifier for your subaccount. It usually looks something like this:

m123qWerTy

2. Find your API Key

This is your private access key used to authenticate your session reset request. You can find it under profile Settings.

3. Encode Special Characters (if needed)

If your API key contains special symbols like +, =, or &, you must URL encode them before using them in a URL.

Use this tool to encode your API key safely:

πŸ” Example:

Original API Key: 1234+abcd=xyz
Encoded: 1234%2Babcd%3Dxyz

4. Send the Reset Request

Use the following URL format to reset your session:

https://app.simplynode.io/api/subaccounts/{login}/session:reset?ports=9000&apiKey={apiKey}

Replace the following:

β€’ {login} with your actual Proxy Login

β€’ {apiKey} with your encoded API key

πŸ” Example:

https://app.simplynode.io/api/subaccounts/mysubaccount123/session:reset?ports=9000&apiKey=1234%2Babcd%3Dxyz

5. Open this URL in your browser

Or send it via a tool like curl or Postman. You should receive a confirmation that your session has been reset.

πŸ’‘ Tips

β€’ You can reset multiple ports by changing ports=9000 to a comma-separated list, like ports=9000,9001,9002.

β€’ Keep your API key secure! Never share it in public places.

If you need any help, don’t hesitate to contact our support team. 😊

Did this answer your question?