LearnCard Documentation
GithubStatusSupportLaunch App
  • 🚀Introduction
    • What is LearnCard?
    • Use Cases & Possibilities
    • Ecosystem Architecture
  • ⚡Quick Start
    • Setup & Prerequisites
    • Your First Integration
  • 📚Tutorials
    • Create a Credential
    • Create a Boost
    • Create a ConsentFlow
    • Create a Connected Website
    • Send xAPI Statements
    • Listen to Webhooks
  • ✅How-To Guides
    • Verify My Issuer
    • Connect Systems
      • Connect a Website
      • Connect a Game
    • Implement Flows
      • Claim Data after Guardian Consent
      • Connect via CHAPI
        • ⭐CHAPI Wallet Setup Guide
        • ↔️Translating to CHAPI documentation
        • 🖥️Demo Application
        • 🔰Using LearnCard to Interact with a CHAPI Wallet
        • 📝Cheat Sheets
          • Issuers
          • Wallets
    • Deploy Infrastructure
      • Remote Key Management
      • Generate API Tokens
      • Signing Authority
      • Connect to Independent Network
      • Build a Plugin
  • 🛠️SDKs & API Reference
    • LearnCard Wallet SDK
      • Authentication
      • Usage Examples
      • SDK Reference
      • Plugin API Reference
      • Integration Strategies
      • Deployment
      • Troubleshooting
      • Changelog
    • LearnCloud Network API
      • Authentication
      • Usage Examples
      • Architecture
      • Notifications & Webhooks
      • Profiles
      • Profile Managers
      • Credentials
      • Boosts
      • Presentations
      • Storage
      • Contracts
      • DID Metadata
      • Claim Hooks
      • Auth Grants
      • Utilities
      • Models
      • OpenAPI
    • LearnCloud Storage API
      • Authentication
      • Usage Examples
      • Architecture
      • Storage
      • Index
      • User
      • Custom Storage
      • Utilities
      • Models
      • xAPI Reference
    • Plugins
      • Crypto
      • DIDKit
      • DID Key
      • Dynamic Loader
      • VC
        • Expiration Sub-Plugin
      • VC-Templates
      • VC-API
      • Ceramic
      • IDX
      • VPQR
      • Ethereum
      • CHAPI
      • LearnCard Network
      • LearnCloud
      • LearnCard
      • Simple Signing
      • Claimable Boosts
    • LearnCard CLI
  • 🧠Core Concepts
    • Identities & Keys
      • Decentralized Identifiers (DIDs)
      • Seed Phrases
      • Network Profiles
      • Signing Authorities
      • Trust Registries
    • Credentials & Data
      • Verifiable Credentials (VCs)
      • Credential Lifecycle
      • Schemas, Types, & Categories
      • Building Verifiable Credentials
      • Boost Credentials
      • Getting Started with Boosts
      • Credential URIs
      • xAPI Data
      • General Best Practices & Troubleshooting
    • Consent & Permissions
      • ConsentFlow Overview
      • Consent Contracts
      • User Consent & Terms
      • Consent Transactions
      • Auto-Boosts
      • Writing Consented Data
      • Accessing Consented Data
      • GameFlow Overview
    • Network & Interactions
      • Network Vision & Principles
      • Key Network Procedures
      • Core Interaction Workflows
    • Architecture & Principles
      • Control Planes
      • Plugin System
      • Auth Grants and API Tokens
  • 🔗Development
    • Contributing
Powered by GitBook
On this page

Was this helpful?

  1. SDKs & API Reference
  2. LearnCloud Network API

Profile Managers

PreviousProfilesNextCredentials

Was this helpful?

🛠️

Get your profile manager profile information

get

This route uses the request header to grab the profile manager profile of the current profile manager

Authorizations
Responses
200
Successful response
application/json
Responseany of
notOptional
or
default
Error response
application/json
get
GET /api/profile-manager HTTP/1.1
Host: ..
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*

No content

Get profile manager information

get

This route grabs the profile information of any profile manager, using their id

Path parameters
idstringRequired
Responses
200
Successful response
application/json
Responseany of
notOptional
or
default
Error response
application/json
get
GET /api/profile-manager/{id} HTTP/1.1
Host: ..
Accept: */*

No content

  • POSTCreate a profile manager
  • POSTCreate a profile manager that is a child of a Boost
  • GETGet your profile manager profile information
  • POSTUpdate the profile of your Profile Manager
  • GETGet profile manager information

Create a profile manager

post

Creates a profile manager

Authorizations
Body
displayNamestringOptionalDefault: ""
shortBiostringOptionalDefault: ""
biostringOptionalDefault: ""
emailstringOptional
imagestringOptional
heroImagestringOptional
Responses
200
Successful response
application/json
Responsestring
default
Error response
application/json
post
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

Create a profile manager that is a child of a Boost

post

Creates a profile manager that is a child of a Boost

Authorizations
Body
parentUristringRequired
Responses
200
Successful response
application/json
Responsestring
default
Error response
application/json
post
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

Update the profile of your Profile Manager

post

This route updates the profile of the current profile manager

Authorizations
Body
displayNamestringOptionalDefault: ""
shortBiostringOptionalDefault: ""
biostringOptionalDefault: ""
emailstringOptional
imagestringOptional
heroImagestringOptional
Responses
200
Successful response
application/json
Responseboolean
default
Error response
application/json
post
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