Skip to content

Latest commit

 

History

History
106 lines (70 loc) · 2.71 KB

UsersAPI.md

File metadata and controls

106 lines (70 loc) · 2.71 KB

UsersAPI

All URIs are relative to https://silverchips.mbhs.edu/api

Method HTTP request Description
usersList GET /users/
usersRead GET /users/{id}/

usersList

    open class func usersList(limit: Int? = nil, offset: Int? = nil, completion: @escaping (_ data: UserListResponse?, _ error: Error?) -> Void)

Example

// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import SCOAPIClient

let limit = 987 // Int | Number of results to return per page. (optional)
let offset = 987 // Int | The initial index from which to return the results. (optional)

UsersAPI.usersList(limit: limit, offset: offset) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
limit Int Number of results to return per page. [optional]
offset Int The initial index from which to return the results. [optional]

Return type

UserListResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

usersRead

    open class func usersRead(id: Int, completion: @escaping (_ data: User?, _ error: Error?) -> Void)

Example

// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import SCOAPIClient

let id = 987 // Int | A unique integer value identifying this user.

UsersAPI.usersRead(id: id) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
id Int A unique integer value identifying this user.

Return type

User

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]