Project_Previews

Prev Next

Project_previews

/v1/project_previews/

Project_previews Details


Example for calling:

http://server/v1/project_previews
http://server/v1/project_preview?owner=safran - retrieves all details where the network owner is safran.

Allowed Methods:

[GET]
API Controller: project_preview

Description:

In Safran Project 5, Projects and Networks were distinct entities. This call returns a list of the relationships between networks and projects.

In Safran Project 7, The Network term is no longer in use. Typically, the Project ID and Network ID are the same. However, this call may still be helpful when referencing data that originated in Safran 5.

Parameters:

Name Type Description Notes
owner string Owner of the network Optional


Request Fields:

none


Response Fields :

Name Type Description Notes
project_id int Unique project Id
project_name string Project name
network_id int Unique network Id
network_name string Network name


Sample JSON Response

json result

[
  {
    "project_id": 12,
    "project_name": "Project  - <AB>",
    "network_id": 1,
    "network_name": "Project 001"
    },
  {
    "project_id": 10,
    "project_name": "Project  - <CD>",
    "network_id": 9,
    "network_name": "Project 002"
    }
]