Skip to content

List Personal Templates

Request

List the RPA templates your team created.

  • Effect: none. Read-only. Safe to retry with bounded backoff.
  • Contents: a different store from the marketplace, scoped to your team, with plain single-language titles.
  • Precedence: when a template id exists in both stores, schedule creation resolves it to your team's template.
  • Use: parameter describes the template's variables, exactly as for marketplace templates.
Security
Authorization
Bodyapplication/jsonrequired
searchKeystring or null

Template name

descstring

Template description

pageNointeger or null

Default:1

pageSizeinteger or null

Default:10

curl -i -X POST \
  https://api.morelogin.com/cloudphone/rpa/template/personal/page \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "searchKey": null,
    "desc": "string",
    "pageNo": null
  }'

Responses

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.

Headers
any
Bodyapplication/json
codeintegerrequired

Response code, 0 indicates success,>0 indicates failure

msgstring or nullrequired

Error msg

requestIdstringrequired

Request trace id

dataobjectrequired
Response
{ "code": 0, "msg": null, "requestId": "0d8b6f1c-9f4e-4d02-9d1a-7c3f5a1b2c3d", "data": { "dataList": [], "current": "1", "pages": "1", "total": "1" } }