Change authorization

This endpoint allows you to modify authentication data for accessing the proxy server.

Endpoint:

POST https://proxy-seller.com/api/v1/{YourApiKey}/auth/change

Example

https://proxy-seller.com/api/v1/fj4948ffhg58gh843gh/auth/change

Path parameters:

NameValueDescription

Authorization

<Your_API_Key>

Your personal API key (how to get)

Request body

NameTypeDescription

id

String

id: Authorization ID (required)

active

Boolean

Activate or deactivate authorization

login

String

Set a new username

password

String

Set a new password

ip

String

Set new ip

Response

{
  "status": "success",
  "data": {
    "id": "66decee1e4b0c423139280d9",
    "active": true,
    "login": "abcdef111",
    "password": "fedcba111",
    "orderNumber": "2000096_20240080"
  },
  "errors": []
}

Last updated