GET api/projects/projectsDB

Retrieves project data from the database based on a flexible set of identifiers and source context.

Request Information

URI Parameters

None.

Body Parameters

An object containing the source (`fSource`), field name (`projectField`), identifier (`projectIdentifier`), and optional parent node (`if_node`) for project lookup.

ProjectRequestInfo
NameDescriptionTypeAdditional information
if_node

integer

None.

projectField

string

None.

projectIdentifier

string

None.

fSource

string

None.

Request Formats

application/json, text/json, application/scim+json

Sample:
{
  "if_node": 1,
  "projectField": "sample string 2",
  "projectIdentifier": "sample string 3",
  "fSource": "sample string 4"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ProjectRequestInfo'.

Response Information

Resource Description

On success: HTTP 200 OK with a dataset containing the matching project information. On failure: HTTP 400 Bad Request with a generic error message.

DataRowResponse
NameDescriptionTypeAdditional information
dataInfo

DataSet

None.

Response Formats

application/json, text/json

Sample:
{}

application/scim+json

Sample:
{
  "dataInfo": null
}