Visual Basic 6.0
Visual Basic 6.0
Create a New GMail Label
See more GMail REST API Examples
Demonstrates how to create a new GMail label.Chilkat Visual Basic 6.0 Downloads
Dim success As Long
success = 0
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
http.AuthToken = "GMAIL-ACCESS-TOKEN"
Dim userId As String
userId = "me"
success = http.SetUrlVar("userId",userId)
' Create the JSON to be sent in the HTTP request body.
' The name of the new label is "questions".
Dim json As New ChilkatJsonObject
success = json.UpdateString("name","questions")
success = json.UpdateString("labelListVisibility","labelShow")
success = json.UpdateString("messageListVisibility","show")
json.EmitCompact = 0
Debug.Print json.Emit()
' The JSON contains this:
' {
' "name": "questions",
' "labelListVisibility": "labelShow",
' "messageListVisibility": "show"
' }
Dim url As String
url = "https://www.googleapis.com/gmail/v1/users/{$userId}/labels"
Dim resp As New ChilkatHttpResponse
success = http.HttpJson("POST",url,json,"application/json",resp)
If (success = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Debug.Print "status = " & resp.StatusCode
' A 200 response status indicate success.
If (resp.StatusCode <> 200) Then
Debug.Print resp.BodyStr
Debug.Print "Failed."
Exit Sub
End If
' A successful repsonse contains JSON that looks like this:
' {
' "id": "Label_43",
' "name": "questions",
' "messageListVisibility": "show",
' "labelListVisibility": "labelShow"
' }
Debug.Print "response body:"
Debug.Print resp.BodyStr
Debug.Print "GMail label created!"