Controller for dealing with our addresses or parts of an address. think mailing address 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
Endpoint to get country data
This is used by the flatfile contact imports
200 OK
Country data
type
Response Example (200 OK)
[
{
"CountryId": "string",
"Name": "string",
"Description": "string",
"IsoAlpha2": "string",
"IsoAlpha3": "string",
"IsoNumeric": "integer",
"Addresses": "string",
"Counties": "string",
"PostalCodeGeoDatas": "string",
"SystemCountryRegions": "string"
}
]
Endpoint to get region data (aka states)
This is used by the flatfile contact imports
200 OK
Region Data
type
Response Example (200 OK)
[
{
"RegionId": "integer",
"CountryId": "string",
"Region": "string",
"Abbreviation": "string",
"PostalCodeGeoDatas": "string",
"SystemCountryTypes": "string"
}
]
Schema Definitions
SystemCountryTypes: object
- CountryId: string
- Name: string
- Description: string
- IsoAlpha2: string
- IsoAlpha3: string
- IsoNumeric: integer
- Addresses: string
- Counties: string
- PostalCodeGeoDatas: string
- SystemCountryRegions: string
Example
{
"CountryId": "string",
"Name": "string",
"Description": "string",
"IsoAlpha2": "string",
"IsoAlpha3": "string",
"IsoNumeric": "integer",
"Addresses": "string",
"Counties": "string",
"PostalCodeGeoDatas": "string",
"SystemCountryRegions": "string"
}
SystemCountryRegion: object
- RegionId: integer
- CountryId: string
- Region: string
- Abbreviation: string
- PostalCodeGeoDatas: string
- SystemCountryTypes: string
Example
{
"RegionId": "integer",
"CountryId": "string",
"Region": "string",
"Abbreviation": "string",
"PostalCodeGeoDatas": "string",
"SystemCountryTypes": "string"
}