POST
/
account
/
virtual
/
create
/
dedicated
curl --request POST \
  --url https://devapi.withedge.co/gateway/api/v1/account/virtual/create/dedicated \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'requestId: <requestid>' \
  --data '{
  "customerId": "<string>"
}'
{
	"statusCode": 00,
	"message": "Account successfully created",
	"data": {
		"accountNumber": "1951145523",
		"accountName": "Tony Stark"
	},
	"errors": []
}

Create Dedicated Account

This endpoint allows you to create a dedicated virtual account for a specific customer on the Edge platform.


Request Parameters

requestId
string
required

A unique identifier for the request, used for idempotency.
Example: e0b9f8d0-7a57-4a67-a8b2-4d7c7b5a37c9

customerId
string
required

The unique identifier for the customer on the Edge platform.
Example: CUS1234567890

{
	"statusCode": 00,
	"message": "Account successfully created",
	"data": {
		"accountNumber": "1951145523",
		"accountName": "Tony Stark"
	},
	"errors": []
}