GrowthZone REST API API Reference

undefined

API Endpoint
https://app.memberzone.org
Request Content-Types: application/json
Response Content-Types: application/json
Schemes: https
Version: v1.0

Paths

GET /api/testinghelper/getme_hash/{source}/{formtype}

source: string
in path

(no description)

formtype: integer
in path

(no description)

200 OK

OK

type
Response Example (200 OK)
[
  {
    "this[]": "string",
    "Length": "integer"
  }
]

POST /api/testinghelper/getme_signupkey

Request Example
{
  "Email": "string"
}
Response Example (200 OK)
{
  "SignupKey": "string",
  "IsKeyValid": "boolean",
  "IsSignupCompleted": "boolean",
  "IsSignupBegan": "boolean"
}

Schema Definitions

GetSignupInfoResultModel: object

SignupKey: string
IsKeyValid: boolean
IsSignupCompleted: boolean
IsSignupBegan: boolean
Example
{
  "SignupKey": "string",
  "IsKeyValid": "boolean",
  "IsSignupCompleted": "boolean",
  "IsSignupBegan": "boolean"
}

GetSignupInfoQueryModel: object

Email: string
Example
{
  "Email": "string"
}

String: object

this[]: string
Length: integer
Example
{
  "this[]": "string",
  "Length": "integer"
}