Create API key

The method allows you to create an API key for the user

Request:

Parameter

Required

Type

Description

userId

Yes

String

User ID

alias

Yes

String

Alias

Response:

Parameter

Type

Description

id

String

Api key ID

public

String

Public key

secret

String

Secret key

alias

String

Alias

createdAt

String

Creation date

Create API key

post
Header parameters
x-api-public-keystringOptional

Public API-key

x-api-signaturestringOptional

Signing the request body with a private API-key

Content-typestringOptional

Request content type

Example: application/json
Body

The body of the api key creation request

userIdstringRequired

User ID

Example: 5b41fb2b-9f7a-48cd-ae17-f48ceda2bd83
organizationIdstringRequired

Organization ID

Example: 2f90da31-7c81-4ab2-a7fc-3089bb4be451
aliasstringRequired

API key name

Example: Integration key
Responses
200Success
application/json
post
POST /partner/api/create-api-keys HTTP/1.1
Host: ocp.onchainpay.io
Content-Type: application/json
Accept: */*
Content-Length: 131

{
  "userId": "5b41fb2b-9f7a-48cd-ae17-f48ceda2bd83",
  "organizationId": "2f90da31-7c81-4ab2-a7fc-3089bb4be451",
  "alias": "Integration key"
}
200Success
{
  "success": true,
  "response": {
    "id": "ee839902-f795-4c22-9136-0b9a790784e9",
    "public": "QoK/3fZY8QK68z3DFvwcTgN4LSTDa8pi6rUNbGQfM4EgKCyt9whSFkbIQOFIAsGKlCZlCE1gyvi0Q6vf77KHKw==",
    "secret": "TLS9BLlNCOHTlAEhHGsl8P77gkaUleEnnJv3r4oL2n8owM8c33ALZCaVe3cBq4HEkGm+Tx1rNI6CPUXc8r7fBg==",
    "alias": "Integration key",
    "createdAt": "2025-06-09T11:38:26.491Z"
  }
}

Last updated