All URIs are relative to https://silverchips.mbhs.edu/api
Method | HTTP request | Description |
---|---|---|
imagesList | GET /images/ | |
imagesRead | GET /images/{id}/ |
open class func imagesList(section: String? = nil, tags: String? = nil, authors: String? = nil, limit: Int? = nil, offset: Int? = nil, completion: @escaping (_ data: ContentListResponse?, _ error: Error?) -> Void)
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import SCOAPIClient
let section = "section_example" // String | (optional)
let tags = "tags_example" // String | (optional)
let authors = "authors_example" // String | (optional)
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)
ImagesAPI.imagesList(section: section, tags: tags, authors: authors, limit: limit, offset: offset) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
section | String | [optional] | |
tags | String | [optional] | |
authors | String | [optional] | |
limit | Int | Number of results to return per page. | [optional] |
offset | Int | The initial index from which to return the results. | [optional] |
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func imagesRead(id: Int, completion: @escaping (_ data: Any?, _ error: Error?) -> Void)
// 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 image.
ImagesAPI.imagesRead(id: id) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
id | Int | A unique integer value identifying this image. |
Any
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]