GET
/
v2
/
teams
/
{team_nanoid}
/
member
/
{user_nanoid}
/
summary
Get team member summary
curl --request GET \
  --url https://b2b-api.dev-riseworks.io/v2/teams/{team_nanoid}/member/{user_nanoid}/summary \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "user": {
      "nanoid": "<string>",
      "avatar": "<string>",
      "first_name": "<string>",
      "middle_name": "<string>",
      "last_name": "<string>",
      "email": "<string>",
      "blockchain_address": "<string>",
      "phone": "<string>",
      "dob": "<string>",
      "address": {
        "line_1": "<string>",
        "line_2": "<string>",
        "city": "<string>",
        "state": "<string>",
        "country": "<string>",
        "zip_code": "<string>",
        "timezone": "<string>"
      },
      "social": {
        "linkedin": "<string>",
        "discord": "<string>",
        "website": "<string>",
        "x": "<string>"
      },
      "certifications": [
        {
          "nanoid": "<string>",
          "title": "<string>",
          "website": "<string>",
          "year": 123,
          "file": "<string>"
        }
      ],
      "onboarding": {
        "onboarded": true,
        "step": "complete",
        "role": "admin",
        "moderation_status": "approved"
      }
    },
    "relationship_type": "team_employee",
    "company": {
      "nanoid": "<string>",
      "avatar": "<string>",
      "name": "<string>",
      "website": "<string>",
      "blockchain_address": "<string>",
      "address": {
        "line_1": "<string>",
        "line_2": "<string>",
        "city": "<string>",
        "state": "<string>",
        "country": "<string>",
        "zip_code": "<string>",
        "timezone": "<string>"
      },
      "admin_contact": {
        "fullname": "<string>",
        "phone": "<string>",
        "email": "<string>"
      },
      "incorporation_country": "<string>",
      "incorporation_type": "association",
      "private_data": {
        "tax_id": "<string>"
      }
    },
    "pay_schedules": [
      {
        "nanoid": "<string>",
        "type": "milestone",
        "amount": "<string>",
        "payments_amount": 123,
        "start_date": "2023-11-07T05:31:56Z",
        "end_date": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

team_nanoid
string
required

TeamNanoid

Required string length: 15
user_nanoid
string
required

UserNanoid

Required string length: 15

Response

200
application/json

Default Response

The response is of type object.