The blogger.deletePost method deletes a post from the blog.
public bool blogger.deletePost(string appkey,
string postid,
string username,
string password,
bool publish);
appkey [in]
This value is ignored.
postid [in]
The ID of the post to delete.
username [in]
The name of the user’s space.
password [in]
The user’s secret word.
publish [in]
This value is ignored.
bool [out]
Always returns true
Sample XML-RPC Request as XML
<methodCall>
<methodName>blogger.deletePost</methodName>
<params>
<param><value><string>ignored value</string></value></param>
<param><value><string>1829</string></value></param>
<param><value><string>!spacename!</string></value></param>
<param><value><string>secretword</string></value></param>
<param><value><boolean>1</boolean></value></param>
</params>
</methodCall>
Sample XML-RPC Response as XML
<methodResponse>
<params>
<param>
<value>
<boolean>1</boolean>
</value>
</param>
</params>
</methodResponse>