Get Schedule Sheet Data Mapping

GET /ws/rest/service/v1/schedule/mapping/{project_number}

Purpose

Get all list of data mappings defined for this schedule sheet.

Request Parameters

The following parameters can be included in the request:

  • project_number: Specify the project/shell number.

URL Parameters

  • sheetname: The name of the schedule sheet.
  • filter: (Optional) A filter condition to be used when retrieving the data mapping. It is a JSON object with the below information:
    • "name": (Optional) Name of data mapping
    • "isdefault": (Optional) Specify "yes" to get only the default data mapping and "no" to get all the data mappings. Default is "no"

Response Format

A JSON object is returned in the following format.

{

"data": [],

"message": [],

"status": <REST status code value>

}

A successful response displays a status code 200.

A failed response displays a message with a status code.

Sample Response

{

"data":[

{

"name":"p6_mapping",

"isdefault":"true"

},

{

"name":"stage_mapping",

"isdefault":"false"

}

]

}