Get an Access Token
curl -X POST "https://api.aspose.cloud/connect/token" \
-d "grant_type=client_credentials&client_id=MyClientId&client_secret=MyClientSecret" \
-H "Content-Type: application/x-www-form-urlencoded"
Set Two Sections
curl -X PUT "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/sections" \
-H "authorization: Bearer MyAccessToken" \
-H "accept: application/json" \
-H "Content-Type: application/json" \
-d @SlideSections.json
SlideSections.json content:
{
"SectionList": [
{
"Name": "Products",
"FirstSlideIndex": 3
},
{
"Name": "Support",
"FirstSlideIndex": 5
}
]
}
Rename the First Section
curl -X PUT "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/sections/1?sectionName=Introduction" \
-H "authorization: Bearer MyAccessToken" \
-H "accept: application/json" \
-H "Content-Length: 0"
Read All Sections
curl -X GET "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/sections" \
-H "authorization: Bearer MyAccessToken" \
-H "accept: application/json"
Set Two Sections
{
"sectionList": [
{
"name": "Default Section",
"firstSlideIndex": 1,
"slideList": [
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/1",
"relation": "self",
"slideIndex": 1
},
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/2",
"relation": "self",
"slideIndex": 2
}
]
},
{
"name": "Products",
"firstSlideIndex": 3,
"slideList": [
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/3",
"relation": "self",
"slideIndex": 3
},
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/4",
"relation": "self",
"slideIndex": 4
}
]
},
{
"name": "Support",
"firstSlideIndex": 5,
"slideList": [
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/5",
"relation": "self",
"slideIndex": 5
},
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/6",
"relation": "self",
"slideIndex": 6
}
]
}
],
"selfUri": {
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/sections",
"relation": "self"
}
}
Rename the First Section
{
"sectionList": [
{
"name": "Introduction",
"firstSlideIndex": 1,
"slideList": [
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/1",
"relation": "self",
"slideIndex": 1
},
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/2",
"relation": "self",
"slideIndex": 2
}
]
},
{
"name": "Products",
"firstSlideIndex": 3,
"slideList": [
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/3",
"relation": "self",
"slideIndex": 3
},
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/4",
"relation": "self",
"slideIndex": 4
}
]
},
{
"name": "Support",
"firstSlideIndex": 5,
"slideList": [
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/5",
"relation": "self",
"slideIndex": 5
},
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/6",
"relation": "self",
"slideIndex": 6
}
]
}
],
"selfUri": {
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/sections",
"relation": "self"
}
}
Read All Sections
{
"sectionList": [
{
"name": "Introduction",
"firstSlideIndex": 1,
"slideList": [
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/1",
"relation": "self",
"slideIndex": 1
},
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/2",
"relation": "self",
"slideIndex": 2
}
]
},
{
"name": "Products",
"firstSlideIndex": 3,
"slideList": [
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/3",
"relation": "self",
"slideIndex": 3
},
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/4",
"relation": "self",
"slideIndex": 4
}
]
},
{
"name": "Support",
"firstSlideIndex": 5,
"slideList": [
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/5",
"relation": "self",
"slideIndex": 5
},
{
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/slides/6",
"relation": "self",
"slideIndex": 6
}
]
}
],
"selfUri": {
"href": "https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx/sections",
"relation": "self"
}
}