Test targets
Environments
Reports
Notifications
Private locations
Test Cases
Discoveries
Private locations
Register a private location
registers a private location worker
PUT
/
apiKey
/
v1
/
private-location
/
register
Copy
Ask AI
curl --request PUT \
--url https://app.octomind.dev/api/apiKey/v1/private-location/register \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"name": "<string>",
"registrationData": {
"proxypass": "secret22",
"proxyuser": "user",
"address": "34.45.23.22:23455"
}
}'
Copy
Ask AI
{
"success": true
}
Authorizations
Body
application/json
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request PUT \
--url https://app.octomind.dev/api/apiKey/v1/private-location/register \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"name": "<string>",
"registrationData": {
"proxypass": "secret22",
"proxyuser": "user",
"address": "34.45.23.22:23455"
}
}'
Copy
Ask AI
{
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.