Skip to main content

MemberstatusService

A list of all methods in the MemberstatusService service. Click on the method name to view detailed information about that method.

MethodsDescription
MemberStatusV_GetGets the first found member that matches the query. Operation to get member overview. Is usually called from POS after a member gives some identification information this method returns the status together with contactId (GUID) and memberNumber (if available). The contactId may be used to get detailed contact information. Common identification fields that may be used in the query: socialSecurityNumber, email, mobilePhone, memberNumber and externalId The language of the returned answer is controlled by the language setting of the user connected to the API-key.

MemberStatusV_Get

Gets the first found member that matches the query. Operation to get member overview. Is usually called from POS after a member gives some identification information this method returns the status together with contactId (GUID) and memberNumber (if available). The contactId may be used to get detailed contact information. Common identification fields that may be used in the query: socialSecurityNumber, email, mobilePhone, memberNumber and externalId The language of the returned answer is controlled by the language setting of the user connected to the API-key.

  • HTTP Method: GET
  • Endpoint: /api/v2/memberstatus

Parameters

NameTypeRequiredDescription
querystring{fieldId}:{value}, e.g. email:test@test.com

Return Type

MemberStatusModel

Example Usage Code Snippet

import { VoyadoEngage } from 'voyado_engage';

(async () => {
const voyadoEngage = new VoyadoEngage({
token: 'YOUR_TOKEN',
});

const { data } = await voyadoEngage.memberstatus.memberStatusVGet({
query: 'query',
});

console.log(data);
})();

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →