Get team member
curl --request GET \
--url https://tapify.app/api/v1/team-members/{memberId} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://tapify.app/api/v1/team-members/{memberId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"id": "45fa16aa-2546-49b3-9d1e-7b7e1c9fb1e7",
"workspaceId": "9df81bd4-3d76-42cc-9518-a019ea75a221",
"accountId": "0e35f7a8-e866-4f5d-b9cb-06961a130fef",
"status": "active",
"firstName": "Mina",
"lastName": "Park",
"displayName": "Mina Park",
"email": "mina@acme.com",
"jobTitle": "Head of Partnerships",
"department": "Partnerships",
"avatarUrl": "https://example.com/mina.jpg",
"profileUrl": "https://tapify.app/mina-park",
"slug": "mina-park",
"contact": {
"phone": "+31612345678",
"whatsapp": "<string>",
"website": "https://acme.com"
},
"contactDetails": [
{
"id": "33d5f285-64f7-41aa-bf9e-17a0fbf535af",
"label": "Mobile",
"value": "+31612345678",
"address": {
"line1": "Keizersgracht 391 A",
"line2": "",
"city": "Amsterdam",
"postalCode": "1016 EJ",
"country": "NL"
}
}
],
"createdAt": "2026-07-01T09:30:00.000Z",
"updatedAt": "2026-07-28T10:15:00.000Z"
}
}{
"error": {
"code": "bad_request",
"message": "Request body is invalid.",
"details": {}
}
}{
"error": {
"code": "bad_request",
"message": "Request body is invalid.",
"details": {}
}
}{
"error": {
"code": "bad_request",
"message": "Request body is invalid.",
"details": {}
}
}{
"error": {
"code": "bad_request",
"message": "Request body is invalid.",
"details": {}
}
}Team members
Get team member
Get one member and their digital business card details.
GET
/
team-members
/
{memberId}
Get team member
curl --request GET \
--url https://tapify.app/api/v1/team-members/{memberId} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://tapify.app/api/v1/team-members/{memberId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"id": "45fa16aa-2546-49b3-9d1e-7b7e1c9fb1e7",
"workspaceId": "9df81bd4-3d76-42cc-9518-a019ea75a221",
"accountId": "0e35f7a8-e866-4f5d-b9cb-06961a130fef",
"status": "active",
"firstName": "Mina",
"lastName": "Park",
"displayName": "Mina Park",
"email": "mina@acme.com",
"jobTitle": "Head of Partnerships",
"department": "Partnerships",
"avatarUrl": "https://example.com/mina.jpg",
"profileUrl": "https://tapify.app/mina-park",
"slug": "mina-park",
"contact": {
"phone": "+31612345678",
"whatsapp": "<string>",
"website": "https://acme.com"
},
"contactDetails": [
{
"id": "33d5f285-64f7-41aa-bf9e-17a0fbf535af",
"label": "Mobile",
"value": "+31612345678",
"address": {
"line1": "Keizersgracht 391 A",
"line2": "",
"city": "Amsterdam",
"postalCode": "1016 EJ",
"country": "NL"
}
}
],
"createdAt": "2026-07-01T09:30:00.000Z",
"updatedAt": "2026-07-28T10:15:00.000Z"
}
}{
"error": {
"code": "bad_request",
"message": "Request body is invalid.",
"details": {}
}
}{
"error": {
"code": "bad_request",
"message": "Request body is invalid.",
"details": {}
}
}{
"error": {
"code": "bad_request",
"message": "Request body is invalid.",
"details": {}
}
}{
"error": {
"code": "bad_request",
"message": "Request body is invalid.",
"details": {}
}
}Use the member
id returned by List team members or Create team member. The response includes their digital business card details and current invitation status.Authorizations
API key created under Settings → API keys.
Path Parameters
Team member ID.
Example:
"45fa16aa-2546-49b3-9d1e-7b7e1c9fb1e7"
Response
Team member information
A member of the Tapify Teams workspace.
Show child attributes
Show child attributes
Was this page helpful?
⌘I