Back to resources

Exploring the Graviti api

Get api v1 members contacts by id

Get contact records of members using the contact record id that is available on the administration portal


GET/api/v1/Members/contacts/{id}

Get a record of a member’s contact record by contact record ID that is available on the administration portal

REQUEST INFORMATION

Parameters

Name

Type

Additional information

Id

String

Required

x-api-key

Header

Required

x-api-secret 

Header

Required

 

RESPONSE INFORMATION

  • Code: 200
  • Description: successful
  • Media type: text/plain; application/json; text/json
  • Links: no links

Example value|Schema

{
  "contactType": "string",
  "contactTypeId": 0,
  "created": "2023-12-08T07:32:00.827Z",
  "id": "string",
  "member": "string",
  "memberId": "string",
  "organization": "string",
  "organizationId": "string",
  "memberOrganizationId": "string",
  "updated": "2023-12-08T07:32:00.827Z",
  "value": "string",
  "usageTypeId": 0,
  "usageType": "string"
}

Field

Type

Description

Contact type

String

Contact type of the member contact

Contact type id

Integer

Contact type Id of the contact type

Created

Datetime

Datetime when the member contact record was created in the system

Id

String

Internal ID to identify member contacts

Member

String

The name of the member

Member id

String

The member id number to identify the member

Organization

String

The name of the organization the member belongs to

Organization id

String

The organization id number to identify the organization

Updated

Datetime

Datetime when the member contact record was last updated.

Value

String

The value of the contact

Usage type id

Integer

The contact usage type id

Usage type

String

The contact usage type



Related topics