BlockID Portal — Docs

How to Use BlockID

A complete, beginner-friendly tour of the product — what it does, what each role does, and how to run every core workflow, illustrated with styled mock-ups of the actual screens. Use the search box (press /) to jump to anything.

What BlockID does

BlockID Portal lets an organization make a claim about someone or something, sign it, and hand it over as a verifiable credential. The person who receives it — the holder — keeps it in a wallet. Anyone they show it to — a verifier — can confirm in seconds that it's genuine, unaltered, still valid, and really came from the issuer. Every important event is written to a private, hash-chained MySQL ledger so the history itself can be proven.

1 · Issue

An issuer signs a credential against a DID and schema.

2 · Hold

The holder keeps it in their wallet, with a QR and token.

3 · Verify

Anyone confirms it's genuine, unaltered, and current.

4 · Prove

The hash-chained ledger records every event for audit.

The five roles

BlockID uses role-based access control (RBAC) with strict organization scoping — people only ever see data inside their own organization.

RoleWho they areWhat they can do
Super AdminPlatform operatorManage all organizations, global users, marketing admin, platform-wide oversight and the ledger.
Org AdminRuns one organizationManage that org's users, DIDs, schemas, API tokens, audit logs, and settings.
IssuerSigns credentialsCreate schemas, issue credentials against a DID, set expiry, and revoke.
VerifierChecks credentialsVerify by token, ID, or pasted JSON and read the verdict.
End UserHolds credentialsView their wallet, open a credential, share its QR/token, download JSON.

Super Admin: first steps Super Admin

The Super Admin is created by the installer and sets up everything else.

  1. Sign in

    Go to /login.php and sign in. You land on /dashboard.php.

  2. Create your first organization

    Open Organizations → New and add a name and details. See Create an organization.

  3. Invite an Org Admin

    Create a user, assign the Org Admin role, and scope them to the new org. They take over day-to-day management.

  4. Review platform health

    Check the audit log and run Verify Ledger Integrity on a fresh schedule.

Org Admin: setting up your org Org Admin

  1. Add your team

    Create Issuers, Verifiers, and End Users under Users. Assign roles deliberately — least privilege.

  2. Create a DID

    In the DID Registry mint a did:blockid:{uuid}. This identity will sign your credentials.

  3. Define schemas

    Build the credential templates your issuers will use.

  4. Create API tokens (optional)

    If you'll integrate systems, mint tokens under API Management. See the API Guide.

  5. Watch the audit log

    Every sensitive action is recorded. Review it regularly.

Issuer: signing credentials Issuer

  1. Pick or create a schema

    Choose the template that matches what you're attesting.

  2. Choose a DID

    Select the issuing identity whose private key will sign.

  3. Fill in the values and a holder

    Enter the field values, pick the End User who will hold it, and set an optional expiry.

  4. Issue

    BlockID hashes, signs, mints a token + QR, and writes the ledger entry. Full detail in the Issuer Guide.

Verifier: checking credentials Verifier

  1. Open Verify

    Go to the Verify module.

  2. Provide the credential

    Paste a verification token, a credential ID, or the credential JSON (or scan the QR).

  3. Read the verdict

    You'll get one of VALID, EXPIRED, REVOKED, TAMPERED, UNKNOWN_ISSUER, or NOT_FOUND with a per-check breakdown. See the Verifier Guide.

End User: your wallet End User

  1. Sign in

    Sign in at /login.php.

  2. Open your wallet

    The Wallet lists every credential issued to you.

  3. Open a credential

    Tap one to see its details, status, QR code, and verification token.

  4. Share or download

    Show the QR/token to a verifier, or download the JSON. See the Wallet Guide.

How to create an organization

Super Admin Open Organizations, choose New organization, enter a name and any details, and save. Everything created afterward — users, DIDs, schemas, credentials — is scoped to this organization and invisible to others.

How to create users

Super Admin Org Admin Under Users, choose New user, set their name and email, pick a role, and (for Super Admins) the organization. The user signs in at /login.php and sees only what their role allows.

Least privilege. Give each person the narrowest role that lets them do their job. An Issuer doesn't need admin rights; a Verifier doesn't need issuing rights.

How to create DIDs

Org Admin Issuer In the DID Registry, choose Create DID. BlockID generates a unique identifier in the form did:blockid:{uuid} plus an RSA-2048 keypair. The private key never leaves the server and is used to sign credentials; the public key lets verifiers check signatures.

did:blockid:7c9e6679-7425-40de-944b-e07fc1f90ae7

How to create credential schemas

Org Admin Issuer A schema is a reusable template. Under Schemas → New schema, give it a name and define each field (its key, label, and type). For example, a "Course Completion" schema might define fullName, course, grade, and completedOn.

How to issue credentials

Issuer Open Credentials → Issue. Select a schema and an issuing DID, fill in the field values, choose the holder (an End User), and optionally set an expiry date. On issue, BlockID:

  • builds a canonical JSON form of the credential and computes its SHA-256 hash;
  • signs that hash with the DID's private key using RSA-SHA256;
  • mints a verification token and a QR code;
  • writes a ledger entry hash-chained to the previous one.

How users view their credentials

End User The holder opens the Wallet to see every credential issued to them, opens any one to view its fields and live status, and can share the QR/token or download the credential JSON. See the mock-up under Common workflows.

How to verify

Verifier End User Anyone with the token, ID, QR, or JSON can verify. The verifier re-computes the hash, checks the signature against the issuer's public DID, and looks up revocation and expiry. The result is one clear verdict plus the individual checks behind it (see below).

How to revoke

Issuer If a credential should no longer be trusted — a mistake, a role change, a lost device — open it under Credentials and choose Revoke. BlockID records it in the revocation registry and writes a ledger entry. From then on, verification returns REVOKED. Revocation is permanent and cannot be undone — re-issue a fresh credential instead.

How to check ledger integrity

Super Admin Org Admin Open the Ledger module and click Verify Ledger Integrity. BlockID re-walks the hash chain from the first record forward, recomputing each link. If any record had been altered, the chain would break and the check would flag the exact point. A passing check looks like the panel below.

Use the API (in brief)

Everything above can be automated. Create a token under API Management, send it as Authorization: Bearer <token>, and call /api/v1/**. One quick example — verifying a credential:

cURL
curl -X POST https://example.com/api/v1/credentials/verify.php -H "Authorization: Bearer $TOKEN" -H "Content-Type: application/json" -d '{"token":"VTKN-9F2A-7C13-A0E5"}'
Full authentication, scopes, rate limits, error codes, and copy-paste examples for every endpoint live in the API Guide.

Common workflows

Here's what the actual screens look like. These are styled mock-ups, not photographs — but they mirror the real dashboard, credential, verify, and profile UI.

The dashboard

your-domain/dashboard.php
BlockID
Overview
DID Registry
Credentials
Verify
Ledger
Home › Overview
1,284
Credentials
37
DIDs
12
Schemas
3
Revoked

The dashboard overview, with a collapsible sidebar, breadcrumbs, and at-a-glance stats.

A credential

Issued by Acme University
Course Completion
VALID
Holder
Alex Rivera
Course
Workplace Safety
Grade
Distinction
Expires
2027-01-31
Verification token
VTKN-9F2A-7C13-A0E5

A credential as it appears in the wallet: fields, live status, verification token, and a scannable QR.

A verification result

VALID Credential CRD-4821 · checked just now
  • Issuer signature is valid RSA-SHA256
  • Content hash matches (not tampered) SHA-256
  • Issuer DID is known did:blockid:7c9e…
  • Not revoked registry clear
  • Within validity window exp 2027-01-31

A passing verification. A failing one swaps the pill (for example REVOKED or TAMPERED) and marks the failing check with a red ✕.

The profile dropdown

AR
Alex Rivera
Organization Admin · Acme University
My Profile
Account Settings
Security Settings
Switch Theme
Sign Out

The top-right profile dropdown. Sign Out submits a CSRF-protected POST and returns you to /login.php.

No matching workflows. Try another search term.

Troubleshooting (quick)

  • Can't sign in? Confirm cookies are enabled and you're at /login.php. Repeated failures can trigger a temporary lockout — wait and retry.
  • Dashboard shows a database error? Follow the ordered checklist in Troubleshooting → Database.php line 41.
  • Verification says UNKNOWN_ISSUER? The credential's DID isn't in this system — confirm you're verifying against the right BlockID instance.
  • 403 on a form submit? Your CSRF token expired. Reload the page and try again.

The full guide is in Troubleshooting.

FAQ

Is BlockID a blockchain or cryptocurrency?

No. BlockID uses a private, hash-chained MySQL ledger to make tampering easy to detect. There's no token, no coin, no mining, and no public network — your data lives in your own database.

What does "verifiable credential" actually mean?

It's a signed, fingerprinted document. Anyone can confirm it came from the stated issuer and hasn't been changed — without contacting the issuer — using the issuer's public DID and the credential's hash.

Can a holder edit a credential they were given?

They can change the file, but any change breaks the hash and the signature, so verification returns TAMPERED. This makes tampering easy to detect.

What happens when a credential expires or is revoked?

Verification returns EXPIRED or REVOKED respectively. The credential still exists in the wallet, but verifiers are told not to trust it. The issuer can issue a fresh one.

Do I need to write code to use BlockID?

No — every workflow here is available in the dashboard. The API is there when you want to automate or integrate with other systems.

Who can see my organization's data?

Only members of your organization, scoped by role. BlockID enforces strict organization isolation — one org cannot read another's DIDs, schemas, credentials, or logs.

Glossary

TermMeaning
DIDDecentralized identifier — a unique, self-describing ID for an issuer, in the form did:blockid:{uuid}, backed by an RSA-2048 keypair.
Verifiable credentialA signed, hash-fingerprinted document asserting a claim that anyone can check independently.
IssuerThe party that signs and issues a credential (e.g. a university, employer, or authority).
HolderThe person or entity who receives and keeps the credential in their wallet.
VerifierAnyone who checks a credential's authenticity and status.
SchemaA reusable template defining the fields a credential carries.
RevocationPermanently marking a credential as no longer trusted, recorded in the revocation registry.
LedgerThe private, append-only MySQL record of every important event.
Hash chainA sequence where each ledger record includes the hash of the previous one, so any change downstream is detectable.
ScopeA permission attached to an API token (e.g. credentials:issue) that limits what the token can do.
Bearer tokenThe API credential sent as Authorization: Bearer <token>; stored server-side only as a SHA-256 hash.