Controller for Hubspot to perform CRUD (currently delete is not needed/implemented) operations needed for Individuals in Tenant 1 We limit access to Tenant 1 as this shouldn't be utlized by other tenants Documentation maintained at https://gzhubspotapidocs.z19.web.core.windows.net 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 an Individual
Get an Individual
id:
string
in path
(no description)
200 OK
IndividualModel
Response Example (200 OK)
{
"FirstName": "string",
"LastName": "string",
"EmailAddress": "string",
"PhoneNumbers": "string",
"PrimaryAddress": "string",
"Id": "string",
"OrganizationId": "string"
}
Update an existing Individual
Update an existing Individual
undefined
id:
object
in path
(no description)
Request Example
{
"FirstName": "string",
"LastName": "string",
"EmailAddress": "string",
"PhoneNumbers": "string",
"PrimaryAddress": "string",
"OrganizationId": "string"
}
200 OK
IndividualModel
Response Example (200 OK)
{
"FirstName": "string",
"LastName": "string",
"EmailAddress": "string",
"PhoneNumbers": "string",
"PrimaryAddress": "string",
"Id": "string",
"OrganizationId": "string"
}
Schema Definitions
IndividualModel: object
- FirstName: string
-
Gets or Sets FirstName
- LastName: string
-
Gets or Sets LastName
- EmailAddress: string
-
Gets or Sets EmailAddress
- PhoneNumbers: string
-
Gets or Sets PhoneNumbers
- PrimaryAddress: string
-
Gets or Sets PrimaryAddress
- Id: string
-
Gets or Sets Id
- OrganizationId: string
-
Gets or Sets OrganizationId
Example
{
"FirstName": "string",
"LastName": "string",
"EmailAddress": "string",
"PhoneNumbers": "string",
"PrimaryAddress": "string",
"Id": "string",
"OrganizationId": "string"
}
EditIndividualModel: object
- FirstName: string
-
Gets or Sets FirstName
- LastName: string
-
Gets or Sets LastName
- EmailAddress: string
-
Gets or Sets EmailAddress
- PhoneNumbers: string
-
Gets or Sets PhoneNumbers
- PrimaryAddress: string
-
Gets or Sets PrimaryAddress
- OrganizationId: string
-
Gets or Sets OrganizationId
Example
{
"FirstName": "string",
"LastName": "string",
"EmailAddress": "string",
"PhoneNumbers": "string",
"PrimaryAddress": "string",
"OrganizationId": "string"
}