How to clear the address in a message?
up vote
0
down vote
favorite
I can add a reply-to address to a message using this code:
msgReplyTo= 'ReplyTo':['EmailAddress':
'Address': sA,'Name': sN ];
msgReplyTo = JSON.stringify(msgReplyTo);
$.ajax(
url: MessageUrl,
type : 'PATCH',
headers: 'Authorization': 'Bearer ' +
accessToken, 'Content-Type':
'application/json' ,
data : msgReplyTo
).success(function (response)
{
...
Now I want to clear the Reply-to address. What syntax should I use?
Thanks,
Victor Ivanidze
microsoft-graph
add a comment |
up vote
0
down vote
favorite
I can add a reply-to address to a message using this code:
msgReplyTo= 'ReplyTo':['EmailAddress':
'Address': sA,'Name': sN ];
msgReplyTo = JSON.stringify(msgReplyTo);
$.ajax(
url: MessageUrl,
type : 'PATCH',
headers: 'Authorization': 'Bearer ' +
accessToken, 'Content-Type':
'application/json' ,
data : msgReplyTo
).success(function (response)
{
...
Now I want to clear the Reply-to address. What syntax should I use?
Thanks,
Victor Ivanidze
microsoft-graph
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I can add a reply-to address to a message using this code:
msgReplyTo= 'ReplyTo':['EmailAddress':
'Address': sA,'Name': sN ];
msgReplyTo = JSON.stringify(msgReplyTo);
$.ajax(
url: MessageUrl,
type : 'PATCH',
headers: 'Authorization': 'Bearer ' +
accessToken, 'Content-Type':
'application/json' ,
data : msgReplyTo
).success(function (response)
{
...
Now I want to clear the Reply-to address. What syntax should I use?
Thanks,
Victor Ivanidze
microsoft-graph
I can add a reply-to address to a message using this code:
msgReplyTo= 'ReplyTo':['EmailAddress':
'Address': sA,'Name': sN ];
msgReplyTo = JSON.stringify(msgReplyTo);
$.ajax(
url: MessageUrl,
type : 'PATCH',
headers: 'Authorization': 'Bearer ' +
accessToken, 'Content-Type':
'application/json' ,
data : msgReplyTo
).success(function (response)
{
...
Now I want to clear the Reply-to address. What syntax should I use?
Thanks,
Victor Ivanidze
microsoft-graph
microsoft-graph
asked Nov 8 at 19:09
Victor Ivanidze
61
61
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
According to your description, I assume you want to update the message and clear the replay to address.
Based on my test, we can set the replay to like this:
`"replyTo":[
]`
and using the update endpoint https://graph.microsoft.com/v1.0/me/messages/id
to clear the replay-to address
Hello kikang, unfortunately that doesn't work at all (I've just tried to use your syntax at developer.microsoft.com/en-us/graph/graph-explorer#).
– Victor Ivanidze
Nov 9 at 7:38
Disregard my previous comment - it works for a message in Drafts folder. Please confirm that there is no way to clear the editable message property using endpoint outlook.office.com/api/v1.0/me/messagesid
– Victor Ivanidze
Nov 9 at 8:08
Could you please provide the endpoint that you want to use? Microsoft Graph API? Outlook Office Rest API?
– kikang
Nov 12 at 2:04
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
According to your description, I assume you want to update the message and clear the replay to address.
Based on my test, we can set the replay to like this:
`"replyTo":[
]`
and using the update endpoint https://graph.microsoft.com/v1.0/me/messages/id
to clear the replay-to address
Hello kikang, unfortunately that doesn't work at all (I've just tried to use your syntax at developer.microsoft.com/en-us/graph/graph-explorer#).
– Victor Ivanidze
Nov 9 at 7:38
Disregard my previous comment - it works for a message in Drafts folder. Please confirm that there is no way to clear the editable message property using endpoint outlook.office.com/api/v1.0/me/messagesid
– Victor Ivanidze
Nov 9 at 8:08
Could you please provide the endpoint that you want to use? Microsoft Graph API? Outlook Office Rest API?
– kikang
Nov 12 at 2:04
add a comment |
up vote
0
down vote
According to your description, I assume you want to update the message and clear the replay to address.
Based on my test, we can set the replay to like this:
`"replyTo":[
]`
and using the update endpoint https://graph.microsoft.com/v1.0/me/messages/id
to clear the replay-to address
Hello kikang, unfortunately that doesn't work at all (I've just tried to use your syntax at developer.microsoft.com/en-us/graph/graph-explorer#).
– Victor Ivanidze
Nov 9 at 7:38
Disregard my previous comment - it works for a message in Drafts folder. Please confirm that there is no way to clear the editable message property using endpoint outlook.office.com/api/v1.0/me/messagesid
– Victor Ivanidze
Nov 9 at 8:08
Could you please provide the endpoint that you want to use? Microsoft Graph API? Outlook Office Rest API?
– kikang
Nov 12 at 2:04
add a comment |
up vote
0
down vote
up vote
0
down vote
According to your description, I assume you want to update the message and clear the replay to address.
Based on my test, we can set the replay to like this:
`"replyTo":[
]`
and using the update endpoint https://graph.microsoft.com/v1.0/me/messages/id
to clear the replay-to address
According to your description, I assume you want to update the message and clear the replay to address.
Based on my test, we can set the replay to like this:
`"replyTo":[
]`
and using the update endpoint https://graph.microsoft.com/v1.0/me/messages/id
to clear the replay-to address
answered Nov 9 at 3:01
kikang
59716
59716
Hello kikang, unfortunately that doesn't work at all (I've just tried to use your syntax at developer.microsoft.com/en-us/graph/graph-explorer#).
– Victor Ivanidze
Nov 9 at 7:38
Disregard my previous comment - it works for a message in Drafts folder. Please confirm that there is no way to clear the editable message property using endpoint outlook.office.com/api/v1.0/me/messagesid
– Victor Ivanidze
Nov 9 at 8:08
Could you please provide the endpoint that you want to use? Microsoft Graph API? Outlook Office Rest API?
– kikang
Nov 12 at 2:04
add a comment |
Hello kikang, unfortunately that doesn't work at all (I've just tried to use your syntax at developer.microsoft.com/en-us/graph/graph-explorer#).
– Victor Ivanidze
Nov 9 at 7:38
Disregard my previous comment - it works for a message in Drafts folder. Please confirm that there is no way to clear the editable message property using endpoint outlook.office.com/api/v1.0/me/messagesid
– Victor Ivanidze
Nov 9 at 8:08
Could you please provide the endpoint that you want to use? Microsoft Graph API? Outlook Office Rest API?
– kikang
Nov 12 at 2:04
Hello kikang, unfortunately that doesn't work at all (I've just tried to use your syntax at developer.microsoft.com/en-us/graph/graph-explorer#).
– Victor Ivanidze
Nov 9 at 7:38
Hello kikang, unfortunately that doesn't work at all (I've just tried to use your syntax at developer.microsoft.com/en-us/graph/graph-explorer#).
– Victor Ivanidze
Nov 9 at 7:38
Disregard my previous comment - it works for a message in Drafts folder. Please confirm that there is no way to clear the editable message property using endpoint outlook.office.com/api/v1.0/me/messagesid
– Victor Ivanidze
Nov 9 at 8:08
Disregard my previous comment - it works for a message in Drafts folder. Please confirm that there is no way to clear the editable message property using endpoint outlook.office.com/api/v1.0/me/messagesid
– Victor Ivanidze
Nov 9 at 8:08
Could you please provide the endpoint that you want to use? Microsoft Graph API? Outlook Office Rest API?
– kikang
Nov 12 at 2:04
Could you please provide the endpoint that you want to use? Microsoft Graph API? Outlook Office Rest API?
– kikang
Nov 12 at 2:04
add a comment |
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%2f53214572%2fhow-to-clear-the-address-in-a-message%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