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 /api/hubspot/individuals/{id}

Get an Individual

id: string
in path

(no description)

IndividualModel

Response Example (200 OK)
{
  "FirstName": "string",
  "LastName": "string",
  "EmailAddress": "string",
  "PhoneNumbers": "string",
  "PrimaryAddress": "string",
  "Id": "string",
  "OrganizationId": "string"
}

Update an existing Individual

PUT /api/hubspot/individuals/{id}

Update an existing Individual

id: object
in path

(no description)

Request Example
{
  "FirstName": "string",
  "LastName": "string",
  "EmailAddress": "string",
  "PhoneNumbers": "string",
  "PrimaryAddress": "string",
  "OrganizationId": "string"
}

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"
}

String: object

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

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"
}