Change indent level of page2019 Community Moderator ElectionCan I change the read/write permissions for a notebook/section/page using the OneNote API?How can I change the name of a Notebook or Section?Create Microsoft Team Tab with APIOneNote Graph API Expose author information for individual editsInconsistency in MS Graph API behaviour for onenoteWhich national cloud deployments support Delta queries?UnknownError accessing pages from OneNoteHow set onenote page as read only using onenote APIonenote level and order properties for pagesUnable to make two changes in OneNote page
What can I do if someone tampers with my SSH public key?
Why does this boat have a landing pad? (SpaceX's GO Searcher) Any plans for propulsive capsule landings?
Finding the minimum value of a function without using Calculus
How do I increase the number of TTY consoles?
Should we avoid writing fiction about historical events without extensive research?
Too soon for a plot twist?
Does the US political system, in principle, allow for a no-party system?
What will happen if my luggage gets delayed?
How to write a chaotic neutral protagonist and prevent my readers from thinking they are evil?
What do you call someone who likes to pick fights?
Would those living in a "perfect society" not understand satire
Which country has more?
The (Easy) Road to Code
Did Amazon pay $0 in taxes last year?
Do Paladin Auras of Differing Oaths Stack?
What was so special about The Piano that Ada was willing to do anything to have it?
How do you make a gun that shoots melee weapons and/or swords?
If sound is a longitudinal wave, why can we hear it if our ears aren't aligned with the propagation direction?
Do black holes violate the conservation of mass?
-1 to the power of a irrational number
Why is there an extra space when I type "ls" on the Desktop?
Was it really inappropriate to write a pull request for the company I interviewed with?
Has a sovereign Communist government ever run, and conceded loss, on a fair election?
The preposition for the verb (avenge) - avenge sb/sth (on OR from) sb
Change indent level of page
2019 Community Moderator ElectionCan I change the read/write permissions for a notebook/section/page using the OneNote API?How can I change the name of a Notebook or Section?Create Microsoft Team Tab with APIOneNote Graph API Expose author information for individual editsInconsistency in MS Graph API behaviour for onenoteWhich national cloud deployments support Delta queries?UnknownError accessing pages from OneNoteHow set onenote page as read only using onenote APIonenote level and order properties for pagesUnable to make two changes in OneNote page
I would like to know if and how it's possible to update / change the indent level of a page within a section. I could not find anything about this in the docs of the graph api.
microsoft-graph onenote
add a comment |
I would like to know if and how it's possible to update / change the indent level of a page within a section. I could not find anything about this in the docs of the graph api.
microsoft-graph onenote
add a comment |
I would like to know if and how it's possible to update / change the indent level of a page within a section. I could not find anything about this in the docs of the graph api.
microsoft-graph onenote
I would like to know if and how it's possible to update / change the indent level of a page within a section. I could not find anything about this in the docs of the graph api.
microsoft-graph onenote
microsoft-graph onenote
asked Mar 6 at 13:34
JJTB SomhorstJJTB Somhorst
153
153
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can do so by sending the following patch request:
PATCH https://graph.microsoft.com/v1.0/groups/<groupid>/onenote/pages/<pageid> HTTP/1.1
Authorization: <bearer token>
User-Agent: Java-Client
Accept-Encoding: gzip,deflate
Accept: application/json, text/json
Content-Type: application/json
Host: graph.microsoft.com
Connection: keep-alive
Content-Length: 14
"level": "1"
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55024391%2fchange-indent-level-of-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can do so by sending the following patch request:
PATCH https://graph.microsoft.com/v1.0/groups/<groupid>/onenote/pages/<pageid> HTTP/1.1
Authorization: <bearer token>
User-Agent: Java-Client
Accept-Encoding: gzip,deflate
Accept: application/json, text/json
Content-Type: application/json
Host: graph.microsoft.com
Connection: keep-alive
Content-Length: 14
"level": "1"
add a comment |
You can do so by sending the following patch request:
PATCH https://graph.microsoft.com/v1.0/groups/<groupid>/onenote/pages/<pageid> HTTP/1.1
Authorization: <bearer token>
User-Agent: Java-Client
Accept-Encoding: gzip,deflate
Accept: application/json, text/json
Content-Type: application/json
Host: graph.microsoft.com
Connection: keep-alive
Content-Length: 14
"level": "1"
add a comment |
You can do so by sending the following patch request:
PATCH https://graph.microsoft.com/v1.0/groups/<groupid>/onenote/pages/<pageid> HTTP/1.1
Authorization: <bearer token>
User-Agent: Java-Client
Accept-Encoding: gzip,deflate
Accept: application/json, text/json
Content-Type: application/json
Host: graph.microsoft.com
Connection: keep-alive
Content-Length: 14
"level": "1"
You can do so by sending the following patch request:
PATCH https://graph.microsoft.com/v1.0/groups/<groupid>/onenote/pages/<pageid> HTTP/1.1
Authorization: <bearer token>
User-Agent: Java-Client
Accept-Encoding: gzip,deflate
Accept: application/json, text/json
Content-Type: application/json
Host: graph.microsoft.com
Connection: keep-alive
Content-Length: 14
"level": "1"
answered Mar 6 at 13:46
JJTB SomhorstJJTB Somhorst
153
153
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55024391%2fchange-indent-level-of-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown