Profile Managers
Creates a profile manager
""
""
""
Successful response
Invalid input data
Authorization not provided
Insufficient access
Internal server error
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
Successful response
Invalid input data
Authorization not provided
Insufficient access
Internal server error
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"
}
}
text
This route uses the request header to grab the profile manager profile of the current profile manager
Successful response
Authorization not provided
Insufficient access
Internal server error
GET /api/profile-manager HTTP/1.1
Host: ..
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"created": "text",
"displayName": "",
"shortBio": "",
"bio": "",
"email": "text",
"image": "text",
"heroImage": "text",
"did": "text"
}
This route updates the profile of the current profile manager
""
""
""
Successful response
Invalid input data
Authorization not provided
Insufficient access
Internal server error
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
This route grabs the profile information of any profile manager, using their id
Successful response
Invalid input data
Authorization not provided
Insufficient access
Not found
Internal server error
GET /api/profile-manager/{id} HTTP/1.1
Host: ..
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"created": "text",
"displayName": "",
"shortBio": "",
"bio": "",
"email": "text",
"image": "text",
"heroImage": "text",
"did": "text"
}
Was this helpful?