Update useapi.net account information
December 2023 (April 7, 2025)
Table of contents
https://api.useapi.net/v2/account
Request Headers
Authorization: Bearer {API token}
Content-Type: application/json
API token
is required, see Setup useapi.net for details.
Request Body
{
"name": "User name",
"replyUrl": "Default callback URL to be used for all API endpoints, API will call the provided replyUrl once job completed or failed"
}
-
name
optional, account user name. -
replyUrl
optional, provided value will be used as default value for all API calls unless you choose to override them for individual calls. Place here your callback URL. API will call the providedreplyUrl
once job completed or failed.
Maximum length 1024 characters.
We recommend using sites like webhook.site to test callback URL functionality.
Responses
-
Account was successfully updated. Use GET account to retrieve updated account information.
-
{ "error": "replyUrl is too long", "code": 400 }
-
{ "error": "Unauthorized", "code": 401 }
Examples
-
curl -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer …" \ -X POST https://api.useapi.net/v2/account \ -d '{"name": "…", "replyUrl": "…"}'
-
const apiUrl = "https://api.useapi.net/v2/account"; const token = "API token"; const user = "User name"; const replyUrl = "Callback URL"; const data = { method: 'POST', headers: { 'Authorization': `Bearer ${token}`, 'Content-Type': 'application/json' } }; data.body = JSON.stringify({ user, replyUrl }); const response = await fetch(apiUrl, data); const result = await response.json(); console.log("response", {response, result});
-
import requests apiUrl = "https://api.useapi.net/v2/account" token = "API token" user = "User name" replyUrl = "Callback URL" headers = { "Content-Type": "application/json", "Authorization" : f"Bearer {token}" } body = { "user": f"{user}", "replyUrl": f"{replyUrl}" } response = requests.post(apiUrl, headers=headers, json=body) print(response, response.json())