All URIs are relative to https://finchapp.eastus.cloudapp.azure.com/api
| Method | HTTP request | Description |
|---|---|---|
| validateUser | POST /validate/user | This route lets our clients perform step-by-step signups. |
open class func validateUser(validateUserPayload: ValidateUserPayload, completion: @escaping (_ data: Void?, _ error: Error?) -> Void)This route lets our clients perform step-by-step signups.
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let validateUserPayload = ValidateUserPayload(field: "field_example", content: "content_example") // ValidateUserPayload |
// This route lets our clients perform step-by-step signups.
ValidationAPI.validateUser(validateUserPayload: validateUserPayload) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| validateUserPayload | ValidateUserPayload |
Void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]