Coinme · Arazzo Workflow

Coinme — onboard a customer and buy crypto

Version 1.0.0

Authorize as a partner, KYC-onboard an end user, create an executable buy quote, and execute it against the quote. Operation ids are verified against openapi/coinme-caas-openapi.json.

1 workflow 1 source API 1 provider
View Spec View on GitHub CompanyCryptoCryptocurrencyPaymentsBitcoinWalletKYCOnboardingFintechCrypto-as-a-ServiceOn-RampOff-RampArazzoWorkflows

Provider

coinme

Workflows

onboard-and-buy
Onboard a customer and execute a buy against a transactional quote.
5 steps inputs: creditCurrencyCode, debitCurrencyCode outputs: transaction
1
authorize
initiate-authorize
2
onboard
customer-onboarding
3
quote
initiate-transactional-quote
4
execute
initiate-buy-sell-transaction
5
confirm
get-transaction-history

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Coinme — onboard a customer and buy crypto
  version: 1.0.0
  description: >-
    Authorize as a partner, KYC-onboard an end user, create an executable buy quote, and execute it
    against the quote. Operation ids are verified against openapi/coinme-caas-openapi.json.
sourceDescriptions:
- name: coinme
  url: ../openapi/coinme-caas-openapi.json
  type: openapi
workflows:
- workflowId: onboard-and-buy
  summary: Onboard a customer and execute a buy against a transactional quote.
  inputs:
    type: object
    properties:
      debitCurrencyCode: { type: string, default: USD }
      creditCurrencyCode: { type: string, default: BTC }
  steps:
  - stepId: authorize
    operationId: initiate-authorize
    outputs:
      token: $response.body
  - stepId: onboard
    operationId: customer-onboarding
    outputs:
      customerId: $response.body#/customerId
  - stepId: quote
    operationId: initiate-transactional-quote
    outputs:
      quoteId: $response.body#/quoteId
  - stepId: execute
    operationId: initiate-buy-sell-transaction
    outputs:
      transaction: $response.body
  - stepId: confirm
    operationId: get-transaction-history
    outputs:
      history: $response.body
  outputs:
    transaction: $steps.execute.transaction