BuckBus
API
API
  1. Dedicated addresses
  • API Introduction
    • Introduction
    • References
    • Test store
    • Authorization
    • Processing of requests
    • Webhooks
  • APIs
    • Assets
      • List assets
    • Accounts
      • List accounts
    • Payments
      • Create payment
      • Create fiat payment
      • List payments
      • Payment details
      • List payment transactions
    • Dedicated addresses
      • Create dedicated address
        POST
      • Release dedicated address
        POST
    • Transfers
      • Create transfer
    • Withdrawals
      • Create withdrawal
      • Withdrawal details
    • Convert
      • Convert amount
  • Schemas
    • Payment
    • PaymentTransaction
    • Lang
    • Withdrawal
    • DedicatedAddress
    • Providers
    • Asset
    • Account
    • Accounts
API
API
  1. Dedicated addresses

Create dedicated address

POST
https://api.bucksbus.com/int/dedicate

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
🟠422Unprocessible Entity
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.bucksbus.com/int/dedicate' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "asset_id": "string",
    "address_alloc": "string",
    "dedicate_type": "string",
    "payer_email": "user@example.com",
    "payer_name": "string",
    "payer_lang": "ar",
    "description": "string",
    "custom": "string",
    "custom1": "string",
    "custom2": "string",
    "custom3": "string",
    "custom4": "string",
    "custom5": "string",
    "custom6": "string",
    "custom7": "string",
    "custom8": "string",
    "custom9": "string",
    "webhook_url": "http://example.com",
    "success_url": "http://example.com"
}'
Response Response Example
200 - Example 1
{
    "dedicate_id": "string",
    "dedicate_num": "string",
    "dedicate_type": "string",
    "store_id": "string",
    "store_name": "string",
    "account_id": "string",
    "is_test": true,
    "asset_id": "string",
    "status": "string",
    "status_name": "string",
    "crypto_network": "string",
    "crypto_network_name": "string",
    "address_id": "string",
    "address": "string",
    "address_alloc": "string",
    "start_date": "2019-08-24T14:15:22Z",
    "end_date": "2019-08-24T14:15:22Z",
    "payment_url": "http://example.com",
    "qrcode_url": "http://example.com",
    "payer_email": "user@example.com",
    "payer_name": "string",
    "payer_lang": "ar",
    "description": "string",
    "webhook_url": "http://example.com",
    "success_url": "http://example.com",
    "custom": "string",
    "custom1": "string",
    "custom2": "string",
    "custom3": "string",
    "custom4": "string",
    "custom5": "string",
    "custom6": "string",
    "custom7": "string",
    "custom8": "string",
    "custom9": "string"
}
Previous
List payment transactions
Next
Release dedicated address
Built with