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: f3ae5860-0da1-448e-b94a-2aad0ff8b195
organizationIdstringRequired

Organization ID

Example: d225cb26-2704-407a-9501-754f78aca82d
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": "f3ae5860-0da1-448e-b94a-2aad0ff8b195",
  "organizationId": "d225cb26-2704-407a-9501-754f78aca82d",
  "alias": "Integration key"
}
200Success
{
  "success": true,
  "response": {
    "id": "7d70e02f-20c7-4a37-a6b0-a3209979cec2",
    "public": "QoK/3fZY8QK68z3DFvwcTgN4LSTDa8pi6rUNbGQfM4EgKCyt9whSFkbIQOFIAsGKlCZlCE1gyvi0Q6vf77KHKw==",
    "secret": "TLS9BLlNCOHTlAEhHGsl8P77gkaUleEnnJv3r4oL2n8owM8c33ALZCaVe3cBq4HEkGm+Tx1rNI6CPUXc8r7fBg==",
    "alias": "Integration key",
    "createdAt": "2025-07-15T10:50:46.009Z"
  }
}

Last updated