Sample code for 30+ languages & platforms
Swift

Yousign: Making your first API call

See more Yousign Examples

Demonstrates making the simplest of calls to test your API key. This example tests using the sandbox URLs.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

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

    let http = CkoHttp()!

    // Implements the following CURL command:

    // curl --location --request GET 'https://staging-api.yousign.com/users' \
    // --header 'Authorization: Bearer YOUR_API_KEY' \
    // --header 'Content-Type: application/json'

    // Use the following online tool to generate HTTP code from a CURL command
    // Convert a cURL Command to HTTP Source Code

    // Adds the "Authorization: Bearer YOUR_API_KEY" header.
    http.authToken = "YOUR_API_KEY"
    http.setRequestHeader(name: "Content-Type", value: "application/json")

    let sbResponseBody = CkoStringBuilder()!
    success = http.quickGetSb(url: "https://staging-api.yousign.com/users", sbContent: sbResponseBody)
    if success == false {
        print("\(http.lastErrorText!)")
        return
    }

    let jResp = CkoJsonObject()!
    jResp.loadSb(sb: sbResponseBody)
    jResp.emitCompact = false

    print("Response Body:")
    print("\(jResp.emit()!)")

    var respStatusCode: Int = http.lastStatus.intValue
    print("Response Status Code = \(respStatusCode)")
    if respStatusCode >= 400 {
        print("Response Header:")
        print("\(http.lastHeader!)")
        print("Failed.")
        return
    }

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "id": "/users/XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
    //   "firstname": "John",
    //   "lastname": "Doe",
    //   "email": "john.doe@yousign.fr",
    //   "title": "Developer",
    //   "phone": "+33612345678",
    //   "status": "activated",
    //   "organization": "/organizations/XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
    //   "workspaces": [
    //     {
    //       "id": "/workspaces/XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
    //       "name": "Acme"
    //     }
    //   ],
    //   "permission": "ROLE_ADMIN",
    //   "group": {
    //     "id": "/user_groups/XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
    //     "name": "Administrateur",
    //     "permissions": [
    //       "procedure_write",
    //       "procedure_template_write",
    //       "procedure_create_from_template",
    //       "contact",
    //       "sign",
    //       "organization",
    //       "user",
    //       "api_key",
    //       "procedure_custom_field",
    //       "signature_ui",
    //       "certificate",
    //       "archive"
    //     ]
    //   },
    //   "createdAt": "2018-12-01T09:42:25+01:00",
    //   "updatedAt": "2018-12-01T09:42:25+01:00",
    //   "deleted": false,
    //   "deletedAt": null,
    //   "config": [
    //   ],
    //   "inweboUserRequest": null,
    //   "samlNameId": null,
    //   "defaultSignImage": null,
    //   "notifications": {
    //     "procedure": true
    //   },
    //   "fastSign": false,
    //   "fullName": "John Doe"
    // }

    // Sample code for parsing the JSON response...
    // Use the following online tool to generate parsing code from sample JSON:
    // Generate Parsing Code from JSON

    var name: String?
    var strVal: String?

    var id: String? = jResp.string(of: "id")
    var firstname: String? = jResp.string(of: "firstname")
    var lastname: String? = jResp.string(of: "lastname")
    var email: String? = jResp.string(of: "email")
    var title: String? = jResp.string(of: "title")
    var phone: String? = jResp.string(of: "phone")
    var status: String? = jResp.string(of: "status")
    var organization: String? = jResp.string(of: "organization")
    var permission: String? = jResp.string(of: "permission")
    var groupId: String? = jResp.string(of: "group.id")
    var groupName: String? = jResp.string(of: "group.name")
    var createdAt: String? = jResp.string(of: "createdAt")
    var updatedAt: String? = jResp.string(of: "updatedAt")
    var deleted: Bool = jResp.bool(of: "deleted")
    var deletedAt: String? = jResp.string(of: "deletedAt")
    var inweboUserRequest: String? = jResp.string(of: "inweboUserRequest")
    var samlNameId: String? = jResp.string(of: "samlNameId")
    var defaultSignImage: String? = jResp.string(of: "defaultSignImage")
    var notificationsProcedure: Bool = jResp.bool(of: "notifications.procedure")
    var fastSign: Bool = jResp.bool(of: "fastSign")
    var fullName: String? = jResp.string(of: "fullName")
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "workspaces").intValue
    while i < count_i {
        jResp.i = i
        id = jResp.string(of: "workspaces[i].id")
        name = jResp.string(of: "workspaces[i].name")
        i = i + 1
    }

    i = 0
    count_i = jResp.size(ofArray: "group.permissions").intValue
    while i < count_i {
        jResp.i = i
        strVal = jResp.string(of: "group.permissions[i]")
        i = i + 1
    }

    i = 0
    count_i = jResp.size(ofArray: "config").intValue
    while i < count_i {
        jResp.i = i
        i = i + 1
    }


}