How to create Per Robot Credential in Modern Folders via API?

I want to create a “PerRobot”-scope credential asset via Orchestrator API inside a Modern folder by using:

  • the following endpoint of UiPath.WebApi, version 13.0:

POST: odata/Assets

  • the payload:
{
    "Name": "string7",
    "CanBeDeleted": true,
    "ValueScope": "PerRobot",
    "ValueType": "Credential",
    "Value": "string",
    "StringValue": "string",
    "BoolValue": true,
    "IntValue": 0,
    "CredentialUsername": "",
    "CredentialPassword": "",
    "ExternalName": "string",
    "CredentialStoreId": 1,
    "KeyValueList": [],
    "HasDefaultValue": true,
    "Description": "string",
    "RobotValues": [
        {
            "RobotId": 0,
            "RobotName": "string",
            "KeyTrail": "string",
            "ValueType": "DBConnectionString",
            "StringValue": "string",
            "BoolValue": true,
            "IntValue": 0,
            "Value": "string",
            "CredentialUsername": "string",
            "CredentialPassword": "string",
            "ExternalName": "string",
            "CredentialStoreId": 1,
            "KeyValueList": [],
            "Id": 124
        }
    ],
    "UserValues": [],
    "FoldersCount": 1,
    "Id": 124
}

… but i do always get a 400 Bad Request with the following message regarding string need of a classic folder:

{
  "message": "A valid classic folder id is required for this operation",
  "errorCode": 1009,
  "resourceIds": null
}

I’ve tried out what I’ve found on the following posts, but which both address only correct usage
for classic folder, but NOT modern folders:

How to update Per Robot Credentials in Classic Folders via API - Help / Orchestrator - UiPath Community Forum

How to create/update ValuePerRobot scope assets using Orchestrator API requests? - Help / Orchestrator - UiPath Community Forum

My questions would be:

  1. Is it possible at all to create “PerRobot” credential in modern folders via API?

  2. If “yes”, what am I doing wrong or what part of the payload is incorrect?

  3. Is there any detailed documentation regarding this topic? (could not find any)

Hello @proGrammar!

It seems that you have trouble getting an answer to your question in the first 24 hours.
Let us give you a few hints and helpful links.

First, make sure you browsed through our Forum FAQ Beginner’s Guide. It will teach you what should be included in your topic.

You can check out some of our resources directly, see below:

  1. Always search first. It is the best way to quickly find your answer. Check out the image icon for that.
    Clicking the options button will let you set more specific topic search filters, i.e. only the ones with a solution.

  2. Topic that contains most common solutions with example project files can be found here.

  3. Read our official documentation where you can find a lot of information and instructions about each of our products:

  4. Watch the videos on our official YouTube channel for more visual tutorials.

  5. Meet us and our users on our Community Slack and ask your question there.

Hopefully this will let you easily find the solution/information you need. Once you have it, we would be happy if you could share your findings here and mark it as a solution. This will help other users find it in the future.

Thank you for helping us build our UiPath Community!

Cheers from your friendly
Forum_Staff

Were you able to find a solution for this problem?