API Reference
/- Cloud Phones
- Open API
/
List Market Templates
List RPA templates from the public marketplace.
- Effect: none. Read-only. Safe to retry with bounded backoff. Templates are global, not team-scoped.
- Localization: titles and descriptions are returned in the request language.
- Use:
parameteris a JSON string describing the template's variables and is whattemplateParametermust conform to when you create a schedule. It is null for templates that declare no variables.
Security
Authorization
- MoreLogin open api endpointhttps://api.morelogin.com/cloudphone/rpa/template/market/page
curl -i -X POST \
https://api.morelogin.com/cloudphone/rpa/template/market/page \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"searchKey": null,
"pageNo": null,
"pageSize": null
}'Success. data.dataList holds the records for the requested page and is an empty array when there are no matches; data.total, data.current and data.pages describe the paging.
Response
{ "code": 0, "msg": null, "requestId": "0d8b6f1c-9f4e-4d02-9d1a-7c3f5a1b2c3d", "data": { "dataList": [ … ], "current": "1", "pages": "1", "total": "1" } }