For the complete documentation index, see llms.txt. This page is also available as Markdown.

Modify Registered Agent

Request cancelation or change on a specific registered agent

GET or POST Request

https://v1.api19.com/ra/registered_agent/modify

Delete a specific company

Argument

Required

Type

reg_uu_id

yes

registered agent id from List Registered Agents

status

yes

active OR canceling

auto_renew

yes

yes OR no

key

yes

your api key

curl https://v1.api19.com/ra/registered_agent/modify \
 -d 'reg_uu_id=h329fh23r' \
 -d 'status=active' \
 -d 'auto_renew' \
 -d 'key=api_token'
OK:
{
    "status": "ok"
}

ERROR:
{
    "status": "error",
    "error": "Cannot locate registered agent" 
}
No registered agent id provided
Tools connectivity issue
Cannot locate registered agent
Registered agent is canceling, please renew to continue or leave to cancel automatically
Invalid status value
Invalid auto renew value
Error updating registered agent

Last updated