Get Member (Token or ID)

Get Member Details Using Access Token Or Member ID

This method will return a member's details using an access token or member ID.

Once an API key and member ID or access token are sent, the response will show the status of a member. [status: 1 = active] - if the response does not include 'status' or if 'status' is not equal to '1', then credentials are wrong or the user does not have access.

Using an access token is optional; you may use it in order to utilize one-click-login from inside your ProductDyno members' area. An access token can be generated automatically by using the shortcode {access_token}.

PATH

https://app.productdyno.com/api/v1/members/get

METHOD

GET

PARAMETERS

_api_key
member_id OR access_token

EXAMPLE JSON RESPONSE

{
  "member_id": 73,
  "first_name": "John",
  "last_name": "Doe",
  "email": "john.doe@productdyno.com",
  "payment_gateway_ids": [123, 456],
  "status": 1
}