v1

latestOpenAPI 3.1.02026-07-2663312285.4 KB
Platforms

Create a Platform

post/v1/platforms

Request body

pspIdstring

Unique identifier for the PSP

externalPlatformReferencestring

Unique reference, assigned by external client.

legalEntityNamestring required

The officially registered name of the business as recorded in legal or governmental registries.

Example request

{
  "pspId": "psp_abcdefghijklmno123456",
  "externalPlatformReference": "ENTITY1234567890",
  "legalEntityName": "Example LLC"
}

Response

Platform created successfully

idstring required

Unique identifier for the platform

pspIdstring

Unique identifier for the PSP

externalPlatformReferencestring required

Unique reference, assigned by external client.

legalEntityNamestring required

The officially registered name of the business as recorded in legal or governmental registries.

createdAtstring date-time required

Timestamp when the resource was created. UTC timezone. Format YYYY-MM-DDTHH:MM:SS.ssssssZ

updatedAtstring date-time required

Timestamp when the resource was last updated. UTC timezone. Format YYYY-MM-DDTHH:MM:SS.ssssssZ

Example response

{
  "id": "PLATFORMID123456",
  "pspId": "psp_abcdefghijklmno123456",
  "externalPlatformReference": "ENTITY1234567890",
  "legalEntityName": "Example LLC"
}