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
member_status_v_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. |

member_status_v_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
querystr{fieldId}:{value}, e.g. email:test@test.com

Return Type

MemberStatusModel

Example Usage Code Snippet

from voyado_engage import VoyadoEngage, Environment

sdk = VoyadoEngage(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value
)

result = sdk.memberstatus.member_status_v_get(query="query")

print(result)

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →