Worldline Registration Resource API
The Registration Resource API from Worldline — 1 operation(s) for registration resource.
The Registration Resource API from Worldline — 1 operation(s) for registration resource.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/wordline-registration-resource-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Worldline FIDO server Registration Resource API
version: 1.0.0
contact:
email: dl-ita-fido-server-sm@worldline.com
servers:
- url: https://fido.worldline-solutions.com
tags:
- name: Registration Resource
paths:
/v1.0/webauthn/register:
post:
summary: Initiate fido registration
tags:
- Registration Resource
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/RegOptionRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/RegOptionResponse'
'401':
description: Not Authorized
'403':
description: Not Allowed
patch:
summary: Finish fido registration
tags:
- Registration Resource
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AttestationResponse'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ServerResponse'
'401':
description: Not Authorized
'403':
description: Not Allowed
components:
schemas:
PublicKeyCredentialUserEntity:
required:
- name
type: object
properties:
name:
minLength: 1
type: string
id:
type: string
displayName:
type: string
AuthenticatorAttachment:
type: object
properties:
value:
type: string
HMACGetSecretInput:
type: object
properties:
salt1:
format: binary
type: string
salt2:
format: binary
type: string
CredentialProtectionPolicy:
enum:
- USER_VERIFICATION_OPTIONAL
- USER_VERIFICATION_OPTIONAL_WITH_CREDENTIAL_ID_LIST
- USER_VERIFICATION_REQUIRED
type: string
AttestationResponse:
required:
- sessionId
type: object
properties:
sessionId:
minLength: 1
type: string
attestationBlob:
$ref: '#/components/schemas/PublicKeyCredentialAttestation'
AuthenticatorAttestationResponse:
required:
- clientDataJSON
- attestationObject
type: object
properties:
clientDataJSON:
minLength: 1
type: string
attestationObject:
minLength: 1
type: string
UserVerificationRequirement:
type: object
properties:
value:
type: string
PublicKeyCredentialType:
type: object
properties:
value:
type: string
AuthenticatorSelection:
type: object
properties:
authenticatorAttachment:
type: string
residentKey:
type: string
requireResidentKey:
type: boolean
userVerification:
type: string
ResidentKeyRequirement:
type: object
properties:
value:
type: string
PublicKeyCredentialParameters:
type: object
properties:
type:
$ref: '#/components/schemas/PublicKeyCredentialType'
alg:
$ref: '#/components/schemas/COSEAlgorithmIdentifier'
AuthenticationExtensionsClientInputsRegistrationExtensionClientInput:
type: object
properties:
appid:
type: string
writeOnly: true
appidExclude:
type: string
writeOnly: true
uvm:
type: boolean
writeOnly: true
credProps:
type: boolean
writeOnly: true
credentialProtectionPolicy:
type: string
allOf:
- $ref: '#/components/schemas/CredentialProtectionPolicy'
writeOnly: true
enforceCredentialProtectionPolicy:
type: boolean
writeOnly: true
hmacCreateSecret:
type: boolean
hmacGetSecret:
$ref: '#/components/schemas/HMACGetSecretInput'
PublicKeyCredentialRpEntity:
type: object
properties:
name:
type: string
id:
type: string
PublicKeyCredentialDescriptor:
type: object
properties:
type:
$ref: '#/components/schemas/PublicKeyCredentialType'
id:
type: string
transports:
uniqueItems: true
type: array
items:
$ref: '#/components/schemas/AuthenticatorTransport'
RegOptionRequest:
type: object
properties:
user:
$ref: '#/components/schemas/PublicKeyCredentialUserEntity'
friendlyName:
type: string
authenticatorSelection:
$ref: '#/components/schemas/AuthenticatorSelection'
attestation:
type: string
extensions:
type: object
additionalProperties:
type: string
AuthenticatorTransport:
type: object
properties:
value:
type: string
ServerResponse:
type: object
properties:
status:
$ref: '#/components/schemas/Status'
errorMessage:
type: string
AttestationConveyancePreference:
type: object
properties:
value:
type: string
RegOptionResponse:
type: object
properties:
rp:
$ref: '#/components/schemas/PublicKeyCredentialRpEntity'
user:
$ref: '#/components/schemas/PublicKeyCredentialUserEntity'
challenge:
type: string
pubKeyCredParams:
type: array
items:
$ref: '#/components/schemas/PublicKeyCredentialParameters'
timeout:
format: int64
type: integer
excludeCredentials:
type: array
items:
$ref: '#/components/schemas/PublicKeyCredentialDescriptor'
authenticatorSelection:
$ref: '#/components/schemas/AuthenticatorSelectionCriteria'
attestation:
$ref: '#/components/schemas/AttestationConveyancePreference'
extensions:
$ref: '#/components/schemas/AuthenticationExtensionsClientInputsRegistrationExtensionClientInput'
status:
type: string
errorMessage:
type: string
sessionId:
type: string
AuthenticatorSelectionCriteria:
type: object
properties:
authenticatorAttachment:
$ref: '#/components/schemas/AuthenticatorAttachment'
requireResidentKey:
type: boolean
residentKey:
$ref: '#/components/schemas/ResidentKeyRequirement'
userVerification:
$ref: '#/components/schemas/UserVerificationRequirement'
PublicKeyCredentialAttestation:
required:
- response
- type
type: object
properties:
id:
type: string
rawId:
type: string
response:
$ref: '#/components/schemas/AuthenticatorAttestationResponse'
type:
minLength: 1
pattern: public-key
type: string
getClientExtensionResults:
type: object
additionalProperties:
type: string
transports:
uniqueItems: true
type: array
items:
type: string
Status:
enum:
- OK
- FAILED
type: string
COSEAlgorithmIdentifier:
type: object
properties:
value:
format: int64
type: integer