Was this helpful?
This route uses the request header to grab the profile manager profile of the current profile manager
GET /api/profile-manager HTTP/1.1 Host: .. Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
Successful response
No content
This route grabs the profile information of any profile manager, using their id
GET /api/profile-manager/{id} HTTP/1.1 Host: .. Accept: */*
Creates a profile manager
""
POST /api/profile-manager/create HTTP/1.1 Host: .. Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 90 { "displayName": "", "shortBio": "", "bio": "", "email": "text", "image": "text", "heroImage": "text" }
text
Creates a profile manager that is a child of a Boost
POST /api/profile-manager/create-child HTTP/1.1 Host: .. Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 121 { "parentUri": "text", "profile": { "displayName": "", "shortBio": "", "bio": "", "email": "text", "image": "text", "heroImage": "text" } }
This route updates the profile of the current profile manager
POST /api/profile-manager HTTP/1.1 Host: .. Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 90 { "displayName": "", "shortBio": "", "bio": "", "email": "text", "image": "text", "heroImage": "text" }
true