General
List Services
General
List Services
Retrieve a list of services for the authenticated user.
POST
/
api
/
v2
curl --request POST \
--url https://undrctrl.id/api/v2/ \
--header 'Content-Type: application/json' \
--data '{
"key": "apiKey",
"action": "services"
}'
[
{
"service": 1,
"name": "Followers",
"type": "Default",
"category": "First Category",
"rate": 0.9,
"min": 50,
"max": 10000,
"refill": true,
"cancel": true
}
]
Body
application/json
Response
200
application/json
OK
The response is of type object[]
.
Was this page helpful?
curl --request POST \
--url https://undrctrl.id/api/v2/ \
--header 'Content-Type: application/json' \
--data '{
"key": "apiKey",
"action": "services"
}'
[
{
"service": 1,
"name": "Followers",
"type": "Default",
"category": "First Category",
"rate": 0.9,
"min": 50,
"max": 10000,
"refill": true,
"cancel": true
}
]