View all projects

Learn about the GetAll endpoint in the Project collection.

This API lets you retrieve information about all existing projects, such as its name, purpose, status, domain, function, calibration status, and more. You can also filter the results using pagination parameters.

API request

Sample

GET {{ServerURL}}/api/services/app/Project/GetAll?MaxResultCount=200

Parameters

Parameter
Description

Keyword

A pagination parameter that helps you filter results by specific keywords.

SkipCount

A pagination parameter that helps you define the number of results to skip (i.e. where to start counting) when returning results.

MaxResultCount

A pagination parameter that helps you limit the number of results returned. It specifies the number of retrieved results.

API response

Sample

{
    "result": {
        "totalCount": 2,
        "items": [
            {
                "duplication_Summary": {
                    "feedingDataMapping": {},
                    "contentAttributesMapping": {},
                    "interactionAttributesMapping": {},
                    "destinationEntity_Mapping": {},
                    "interactionChannelsMapping": {},
                    "interactionChannelsInputCategoryMapping": {},
                    "logicsMapping": {},
                    "logicActionsMapping": {},
                    "logicConditionsMapping": {},
                    "triggeredActionAttributesMapping": {},
                    "destinationEntityEnvironmentObjects_Mapping": {}
                },
                "projectName": "Home Interior Validation",
                "duplicated_Project_Id": null,
                "duplicated_Project_Name": "",
                "project_Domain_Id": 4,
                "project_Function_Id": 13,
                "project_Domain_Name": "Digital user experience",
                "project_Function_Name": "Neuro-architecture",
                "productCalibrationStatus": true,
                "isRecurringUser": false,
                "project_Purpose": "data_collection",
                "relatesTo_Project_Id": null,
                "project_Status": "draft",
                "id": 67
            },
            {
                "duplication_Summary": {
                    "feedingDataMapping": {},
                    "contentAttributesMapping": {},
                    "interactionAttributesMapping": {},
                    "destinationEntity_Mapping": {},
                    "interactionChannelsMapping": {},
                    "interactionChannelsInputCategoryMapping": {},
                    "logicsMapping": {},
                    "logicActionsMapping": {},
                    "logicConditionsMapping": {},
                    "triggeredActionAttributesMapping": {},
                    "destinationEntityEnvironmentObjects_Mapping": {}
                },
                "projectName": "Car Design Validation",
                "duplicated_Project_Id": null,
                "duplicated_Project_Name": "",
                "project_Domain_Id": 4,
                "project_Function_Id": 13,
                "project_Domain_Name": "Digital user experience",
                "project_Function_Name": "Neuro-architecture",
                "productCalibrationStatus": null,
                "isRecurringUser": false,
                "project_Purpose": "General",
                "relatesTo_Project_Id": null,
                "project_Status": "draft",
                "id": 68
            },
             "id": 122
            }
        ]
    },
    "targetUrl": null,
    "success": true,
    "error": null,
    "unAuthorizedRequest": false,
    "__abp": true
}

Attributes

Attribute
Description

duplication_Summary

Summary of the mapping between the project components of the original and cloned (current) project, if applicable. Note: This data is available only if the project was cloned (duplicated) from an existing one.

projectName

Name of the project

duplicated_Project_Id

The ID of the original project from which the (current) project was cloned, if applicable. Note: This data is available only if the project was cloned (duplicated) from an existing one.

duplicated_Project_Name

The name of the original project from which the (current) project was cloned, if applicable. Note: This data is available only if the project was cloned (duplicated) from an existing one.

project_Domain_Id

Unique identifier of the project's domain.

This parameter can have the following values:

ID
Domain

-1

No Domain

2

Security & Safety

3

Human wellbeing

4

Digital user experience

project_Function_Id

Unique identifier of the project's function based on the project's domain.

Note: Whether or not you need to enter the project function ID depends on your user account;

  • If you are working with a private solution, you might need to enter the project ID instead of the project domain ID.

  • On the other hand, if you are working with a public solution, you might need to enter the project domain and function ID.

This parameter can have the following values:

  • For No domain (when project_Domain_Id is -1)

ID
Function
Motivation

-1

No Function

-

  • For Security & Safety (when project_Domain_Id is 2)

ID
Function
Motivation

1

Anticipation of drivers' distraction

Imposed

2

Employees' malicious patterns prediction (i.e. security staff of jewellery, bank, etc.)

Free

3

Autonomous digital assistant to access and support safety & security operators duties

Imposed

4

Detection of potential user malicious psychological profile (i.e. before flight onboarding)

Free

  • For Human wellbeing (when project_Domain_Id is 3)

ID
Function
Motivation

5

Work out personalization

Free

6

High-performance athlete's training personalization

Imposed

7

Real-time and historical data of the psychological well being of the employee

Free

8

Users' psychological assessments in real-time (i.e. digital psychologist

Free

  • For Digital user experience (project_Domain_Id is 4)

ID
Function
Motivation

9

Irony detection

Free

10

Music personalisation by emotions

Imposed

11

Marketplace recommendations

Free

12

Virtual soul recreation (i.e. personality) for bots and iNFT

Free

13

Neuro-architecture

Free

project_Domain_Name

Name of the project domain.

project_Function_Name

Name of the project function.

productCalibrationStatus

Indicates whether the project is operating in product calibration mode.

isRecurringUser

Indicates whether the project's user will interact with Affective Computing (powered by Virtue) one or multiple times.

project_Purpose

Purpose of the project.

relatesTo_Project_Id

Unique identifier of another project to which the (current) project is related. Note: A project can be linked with another one to enable the data collected by it in the other one too. This data is available in this attribute only if the project is linked to another one. For example, in simulation solutions, the RDC and simulation projects might be linked to facilitate using RDC data for the simulation.

project_Status

Indicates whether the project is released to production.

id

Unique identifier of the project

Last updated

Was this helpful?