Update Member
Use Popl APIs to create a new member
PUT /api/pub/members/updateMemberCard
Description: Updates specified linksData card
Request Body:
{
"linksDataId": "12345", // REQUIRED
"template": "default-template",
"name": "John Doe",
"private": 0,
"direct": 1,
"photo": "<http://example.com/photo.jpg>",
"logo": "<http://example.com/logo.jpg>",
"description": "A brief description.",
"exchange": "example exchange",
"exchangeText": "Text for exchange",
"leadCaptureMode": 1,
"theme": "dark",
"banner": "<http://example.com/banner.jpg>",
"colorLink": "#FFFFFF",
"jobTitle": "Software Engineer",
"location": "New York",
"company": "Tech Corp",
"username": "johndoe",
"connectTitle": "Connect with me",
"connectBody": "Here's how you can connect.",
"connectButtonText": "Connect",
"connectFields": "field1,field2",
"hiddenFields": "fieldA,fieldB",
"howToPopup": "Instructions for popup",
"branding": "Branding info",
"leadTimer": "30 days",
"nickname": "Johnny",
"qrcodeImage": "<http://example.com/qrcode.jpg>",
"qrcodeColor": "#FF0000",
"subject": "Invitation",
"ccValue": "[email protected]",
"bccValue": "[email protected]",
"message": "Invitation message",
"lockedFields": {
"field1": "value1",
"field2": "value2"
},
"profileType": 1,
"pronouns": "he/him",
"followUpAttachment": "<http://example.com/attachment.pdf>",
"font": "Arial",
"themeLinks": "<http://example.com/themeLinks>",
"matchThemeLinks": true
}
Note: Only the linksDataId is requiredExample response:
POST /api/pub/members/updateMemberEmail
Description: Change the email address of a member
Request Body:
POST /api/pub/members/updateMemberUsername
Description: Change the email address of a member
Request Body:
Last updated