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.
Input:
Path Parameter
project_number(Required): Specify the project/shell number.
Url Parameter
sheetname(Required): name of the schedule sheet.
filter (Optional): 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"
Output:
JSON object containing 'status', 'data', 'message'
A message will be present if the status is not 200 otherwise it will be "success".
Sample Response
{
"data":[
{
"name":"p6_mapping",
"isdefault":"true"
},
{
"name":"stage_mapping",
"isdefault":"false"
}
]
}
Last Published Friday, December 13, 2024