View all functions of a project domain

Learn about the GetProjectFunctions endpoint in the Project collection.

This API retrieves information about all functions available for a project domain.

API request

Sample

GET {{ServerURL}}/api/services/app/Project/GetProjectFunctions?domainId=4

Parameters

Parameter
Description

domainId

Unique identifier of the project's domain (for which you want to retrieve project functions).

Note: Whether or not you need to enter the project domain 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:

ID
Domain

-1

No Domain

2

Security & Safety

3

Human wellbeing

4

Digital user experience

API response

Sample

{
    "result": [
        {
            "function_Name": "Irony detection",
            "motivation": "Free",
            "creationTime": "2022-11-25T00:00:00",
            "project_Domain_Id": 4,
            "id": 9
        },
        {
            "function_Name": "Music personalisation by emotions",
            "motivation": "Free",
            "creationTime": "2022-11-25T00:00:00",
            "project_Domain_Id": 4,
            "id": 10
        },
        {
            "function_Name": "Marketplace recommendations",
            "motivation": "Free",
            "creationTime": "2022-11-25T00:00:00",
            "project_Domain_Id": 4,
            "id": 11
        },
        {
            "function_Name": "Virtual soul recreation (i.e. personality) for bots and iNFT",
            "motivation": "Free",
            "creationTime": "2022-11-25T00:00:00",
            "project_Domain_Id": 4,
            "id": 12
        },
        {
            "function_Name": "Neuro-architecture",
            "motivation": "Free",
            "creationTime": "2022-11-25T00:00:00",
            "project_Domain_Id": 4,
            "id": 13
        }
    ],
    "targetUrl": null,
    "success": true,
    "error": null,
    "unAuthorizedRequest": false,
    "__abp": true
}

Attributes

Attribute
Description

function_Name

Name of the function.

motivation

Motivation associated with the function.

creationTime

Exact date and time of creating the function.

project_Domain_Id

Unique identifier of the domain to which the function is associated.

id

Unique identifier of the function.

Last updated

Was this helpful?