Sample code for 30+ languages & platforms
PureBasic

Xero Create Account

See more Xero Examples

Create new accounts in a Xero company.

Chilkat PureBasic Downloads

PureBasic
IncludeFile "CkHttpResponse.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkJsonObject.pb"

Procedure ChilkatExample()

    success.i = 0

    ; This example requires the Chilkat API to have been previously unlocked.
    ; See Global Unlock Sample for sample code.

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    jsonToken.i = CkJsonObject::ckCreate()
    If jsonToken.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success = CkJsonObject::ckLoadFile(jsonToken,"qa_data/tokens/xero-access-token.json")
    If success = 0
        Debug CkJsonObject::ckLastErrorText(jsonToken)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(jsonToken)
        ProcedureReturn
    EndIf

    CkHttp::setCkAuthToken(http, CkJsonObject::ckStringOf(jsonToken,"access_token"))

    ; Replace the value here with an actual tenant ID obtained from this example:
    ; Get Xero Tenant IDs
    CkHttp::ckSetRequestHeader(http,"Xero-tenant-id","83299b9e-5747-4a14-a18a-a6c94f824eb7")

    CkHttp::setCkAccept(http, "application/json")

    ; The following JSON is sent in the request body:

    ; {
    ;   "Code": "201",
    ;   "Name": "Sales - clearance lines",
    ;   "Type": "SALES"
    ; }

    ; Use this online tool to generate the code from sample JSON: 
    ; Generate Code to Create JSON

    jsonRequestBody.i = CkJsonObject::ckCreate()
    If jsonRequestBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(jsonRequestBody,"Code","201")
    CkJsonObject::ckUpdateString(jsonRequestBody,"Name","Sales - clearance lines")
    CkJsonObject::ckUpdateString(jsonRequestBody,"Type","SALES")

    url.s = "https://api.xero.com/api.xro/2.0/Accounts"

    resp.i = CkHttpResponse::ckCreate()
    If resp.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success = CkHttp::ckHttpJson(http,"PUT",url,jsonRequestBody,"application/json",resp)
    If success = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(jsonToken)
        CkJsonObject::ckDispose(jsonRequestBody)
        CkHttpResponse::ckDispose(resp)
        ProcedureReturn
    EndIf

    Debug "Response Status Code: " + Str(CkHttpResponse::ckStatusCode(resp))

    jsonResponse.i = CkJsonObject::ckCreate()
    If jsonResponse.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckLoad(jsonResponse,CkHttpResponse::ckBodyStr(resp))
    CkJsonObject::setCkEmitCompact(jsonResponse, 0)
    Debug CkJsonObject::ckEmit(jsonResponse)

    If CkHttpResponse::ckStatusCode(resp) >= 300
        Debug "Failed."
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(jsonToken)
        CkJsonObject::ckDispose(jsonRequestBody)
        CkHttpResponse::ckDispose(resp)
        CkJsonObject::ckDispose(jsonResponse)
        ProcedureReturn
    EndIf

    ; Sample output...
    ; (See the parsing code below..)
    ; 
    ; Use the this online tool to generate parsing code from sample JSON: 
    ; Generate Parsing Code from JSON

    ; {
    ;   "Id": "705036aa-771d-4c0a-9d66-28904022858c",
    ;   "Status": "OK",
    ;   "ProviderName": "Chilkat2222",
    ;   "DateTimeUTC": "\/Date(1587161712234)\/",
    ;   "Accounts": [
    ;     {
    ;       "AccountID": "54ddab14-4a8d-45cf-86be-076c99a0cea0",
    ;       "Code": "201",
    ;       "Name": "Sales - clearance lines",
    ;       "Status": "ACTIVE",
    ;       "Type": "SALES",
    ;       "TaxType": "OUTPUT",
    ;       "Class": "REVENUE",
    ;       "EnablePaymentsToAccount": false,
    ;       "ShowInExpenseClaims": false,
    ;       "ReportingCode": "REV",
    ;       "ReportingCodeName": "Revenue",
    ;       "UpdatedDateUTC": "\/Date(1587161712283+0000)\/",
    ;       "AddToWatchlist": false
    ;     }
    ;   ]
    ; }
    ; 

    AccountID.s
    Code.s
    Name.s
    Type.s
    TaxType.s
    Class.s
    EnablePaymentsToAccount.i
    ShowInExpenseClaims.i
    ReportingCode.s
    ReportingCodeName.s
    UpdatedDateUTC.s
    AddToWatchlist.i

    Id.s = CkJsonObject::ckStringOf(jsonResponse,"Id")
    Status.s = CkJsonObject::ckStringOf(jsonResponse,"Status")
    ProviderName.s = CkJsonObject::ckStringOf(jsonResponse,"ProviderName")
    DateTimeUTC.s = CkJsonObject::ckStringOf(jsonResponse,"DateTimeUTC")
    i.i = 0
    count_i.i = CkJsonObject::ckSizeOfArray(jsonResponse,"Accounts")
    While i < count_i
        CkJsonObject::setCkI(jsonResponse, i)
        AccountID = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].AccountID")
        Code = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].Code")
        Name = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].Name")
        Status = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].Status")
        Type = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].Type")
        TaxType = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].TaxType")
        Class = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].Class")
        EnablePaymentsToAccount = CkJsonObject::ckBoolOf(jsonResponse,"Accounts[i].EnablePaymentsToAccount")
        ShowInExpenseClaims = CkJsonObject::ckBoolOf(jsonResponse,"Accounts[i].ShowInExpenseClaims")
        ReportingCode = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].ReportingCode")
        ReportingCodeName = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].ReportingCodeName")
        UpdatedDateUTC = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].UpdatedDateUTC")
        AddToWatchlist = CkJsonObject::ckBoolOf(jsonResponse,"Accounts[i].AddToWatchlist")
        i = i + 1
    Wend


    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(jsonToken)
    CkJsonObject::ckDispose(jsonRequestBody)
    CkHttpResponse::ckDispose(resp)
    CkJsonObject::ckDispose(jsonResponse)


    ProcedureReturn
EndProcedure