Create a Top-up Balance

post

/topupBalance

Creates a top-up balance.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json;charset=utf-8 ()
Root Schema : Topup Balance Create
Type: object
Title: Topup Balance Create
A top-up, used in TopupBalance create requests. The id, href, status, requestedDate, confirmationDate, and relatedParty properties are not used in create requests.
Show Source
Nested Schema : Quantity
Type: object
An amount in a given unit.
Show Source
Nested Schema : Related Topup Balance
Type: object
Title: Related Topup Balance
A relationship between balance top-ups, that defines whether a balance is the parent or child of another.
Show Source
Nested Schema : Bucket Ref
Type: object
Title: Bucket Ref
A reference to a bucket.
Show Source
Nested Schema : Channel Ref
Type: object
Title: Channel Ref
A reference to a channel.
Show Source
Nested Schema : logicalResource
Type: array
Logical resources associated with the top-up.
Show Source
Nested Schema : Party Account Ref
Type: object
Title: Party Account Ref
A reference to a party account.
Show Source
Nested Schema : Payment Method Ref
Type: object
Title: Payment Method Ref
A reference to a payment method.
Show Source
Nested Schema : product
Type: array
Products associated with the top-up.
Show Source
Nested Schema : Related Party
Type: object
Title: Related Party
A party related to another object.
Show Source
Nested Schema : TimePeriod
Type: object
A period of time.
Show Source
Nested Schema : Logical Resource Ref
Type: object
Title: Logical Resource Ref
A reference to a logical resource.
Show Source
Nested Schema : Product Ref
Type: object
Title: Product Ref
A reference to a product.
Show Source
Back to Top

Response

Supported Media Types

201 Response

Created
Body ()
Root Schema : Topup Balance
Type: object
Title: Topup Balance
A top-up.
Show Source
Nested Schema : Quantity
Type: object
An amount in a given unit.
Show Source
Nested Schema : Related Topup Balance
Type: object
Title: Related Topup Balance
A relationship between balance top-ups, that defines whether a balance is the parent or child of another.
Show Source
Nested Schema : Bucket Ref
Type: object
Title: Bucket Ref
A reference to a bucket.
Show Source
Nested Schema : Channel Ref
Type: object
Title: Channel Ref
A reference to a channel.
Show Source
Nested Schema : logicalResource
Type: array
Logical resources associated with the top-up.
Show Source
Nested Schema : Party Account Ref
Type: object
Title: Party Account Ref
A reference to a party account.
Show Source
Nested Schema : Payment Method Ref
Type: object
Title: Payment Method Ref
A reference to a payment method.
Show Source
Nested Schema : product
Type: array
Products associated with the top-up.
Show Source
Nested Schema : relatedParty
Type: array
Parties related to the top-up.
Show Source
Nested Schema : Related Party
Type: object
Title: Related Party
A party related to another object.
Show Source
Nested Schema : TimePeriod
Type: object
A period of time.
Show Source
Nested Schema : Logical Resource Ref
Type: object
Title: Logical Resource Ref
A reference to a logical resource.
Show Source
Nested Schema : Product Ref
Type: object
Title: Product Ref
A reference to a product.
Show Source

400 Response

Bad Request
Body ()
Root Schema : Error
Type: object
This is used when an API throws an error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source

401 Response

Unauthorized
Body ()
Root Schema : Error
Type: object
This is used when an API throws an error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source

403 Response

Forbidden
Body ()
Root Schema : Error
Type: object
This is used when an API throws an error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source

405 Response

Method Not Allowed
Body ()
Root Schema : Error
Type: object
This is used when an API throws an error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source

409 Response

Conflict
Body ()
Root Schema : Error
Type: object
This is used when an API throws an error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source

500 Response

Internal Server Error
Body ()
Root Schema : Error
Type: object
This is used when an API throws an error, typically with a HTTP error response-code (3xx, 4xx, 5xx).
Show Source
Back to Top

Examples

The following examples shows how to create top-up balances by submitting POST requests on the REST resource using cURL. For more information about cURL, see Use cURL.

The -d option specifies the file to attach as the request body.

curl -X POST 'http://host:port/brm/prepayBalanceManagement/version/topupBalance' -d @topupBalanceCreate.json

Example of Request Body for a One-time Noncurrency Top Up Balance

The following is an example of the contents of the topupBalanceCreate.json file sent as the request body to create a one-time noncurrency top-up balance.

{   
   "amount": {
      "amount":"2",
      "units":"USD"
   },
   "bucket": {
      "id" : "0.0.0.1+-balance_group+6336883+840+0"
   }
}

Example of Response Body for a One-time Noncurrency Top Up Balance

The following is an example of the response body in JSON format.

{
    "@baseType": "TopupBalance",
    "@schemaLocation": null,
    "@type": "TopupBalance",
    "amount": {
        "amount": 2.0,
        "units": "USD",
        "@baseType": null,
        "@schemaLocation": null,
        "@type": null
    },
    "bucket": {
        "id": "0.0.0.1+-balance_group+6336883+840+0",
        "href": "http://host:port/brm/prepayBalanceManagement/v4/bucket/0.0.0.1+-balance_group+6336883+840+0",
        "name": null,
        "@baseType": "BucketRef",
        "@schemaLocation": null,
        "@type": "BucketRef",
        "@referredType": null
    },
    "channel": null,
    "confirmationDate": "2021-09-30T02:45:11+05:30",
    "description": null,
    "href": "http://host:port/brm/prepayBalanceManagement/v4/topupBalance/0.0.0.1+-topup+6534850",
    "id": "0.0.0.1+-topup+6534850",
    "impactedBucket": [
        {
            "@baseType": "ImpactedBucket",
            "@schemaLocation": null,
            "@type": "ImpactedBucket",
            "amountAfter": {
                "amount": -194.0,
                "units": "USD",
                "@baseType": null,
                "@schemaLocation": null,
                "@type": null
            },
            "amountBefore": {
                "amount": -192.0,
                "units": "USD",
                "@baseType": null,
                "@schemaLocation": null,
                "@type": null
            },
            "bucket": {
                "id": "0.0.0.1+-balance_group+6336883+840+0",
                "href": "http://host:port/brm/prepayBalanceManagement/v4/bucket/0.0.0.1+-balance_group+6336883+840+0",
                "name": null,
                "@baseType": "BucketRef",
                "@schemaLocation": null,
                "@type": "BucketRef",
                "@referredType": null
            },
            "confirmationDate": null,
            "description": null,
            "item": [
                {
                    "@baseType": "ImpactedBucketItem",
                    "@schemaLocation": null,
                    "@type": "ImpactedBucketItem",
                    "amount": {
                        "amount": 2.0,
                        "units": "USD",
                        "@baseType": null,
                        "@schemaLocation": null,
                        "@type": null
                    },
                    "description": null,
                    "itemType": null,
                    "name": null,
                    "reason": null
                }
            ],
            "name": null,
            "requestedDate": null
        }
    ],
    "isAutoTopup": false,
    "logicalResource": {
        "@baseType": null,
        "@referredType": null,
        "@schemaLocation": null,
        "@type": null,
        "href": null,
        "id": null,
        "name": null,
        "value": ""
    },
    "numberOfPeriods": null,
    "partyAccount": {
        "id": "0.0.0.1+-account+6340627",
        "href": null,
        "description": null,
        "name": "Alice Rose",
        "status": "active",
        "@baseType": null,
        "@schemaLocation": null,
        "@type": "PartyAccountRef",
        "@referredType": null
    },
    "payment": {
        "id": "0.0.0.1+-item-payment+6536386",
        "href": "http://host:port/brm/payment/v4/payment/0.0.0.1+-item-payment+6536386",
        "name": "Billing Event Log",
        "amount": {
            "unit": "USD",
            "value": 2.0
        },
        "paymentDate": "2021-09-30T02:45:11+05:30",
        "@baseType": "Payment",
        "@schemaLocation": null,
        "@type": "Payment",
        "@referredType": null
    },
    "paymentMethod": {
        "id": "0.0.0.1+-payinfo-cc+6337651",
        "href": "http://host:port/brm/paymentMethods/v1/paymentMethod/0.0.0.1+-payinfo-cc+6337651",
        "description": null,
        "isPreferred": true,
        "name": "PIN Payinfo Object",
        "status": null,
        "statusDate": null,
        "account": [
            {
                "id": "0.0.0.1+-account+6340627",
                "href": null,
                "description": null,
                "name": "Alice Rose",
                "@baseType": null,
                "@schemaLocation": null,
                "@type": null,
                "@referredType": null
            }
        ],
        "relatedParty": null,
        "validFor": null,
        "@baseType": null,
        "@schemaLocation": null,
        "@type": "tokenizedCard",
        "@referredType": null
    },
    "product": {
        "id": "0.0.0.1+-service-telco-gsm-sms+6337523",
        "href": null,
        "name": "ServiceTelcoGsmSms",
        "@baseType": null,
        "@schemaLocation": null,
        "@type": "ProductRef",
        "@referredType": null
    },
    "reason": null,
    "recurringPeriod": null,
    "relatedParty": null,
    "relatedTopupBalance": null,
    "requestedDate": "2021-09-30T02:45:11+05:30",
    "requestor": null,
    "status": "CONFIRMED",
    "usageType": "monetary",
    "voucher": ""
}

Example of Request Body for a Recurring Currency Top Up Balance

The following is an example of the contents of the topupBalanceCreate.json file sent as the request body to create a recurring currency top-up balance.

{
	"amount":{
		"amount":"2",
		"units":"USD"
	},
	"recurringPeriod" : "daily",
	"isAutoTopup" : "true",
	"numberOfPeriods" : "2",
	"partyAccount":{
		"id" : "0.0.0.1+-account+6340627"
	}
}

Example of Response Body for a Recurring Currency Top Up Balance

The following is an example of the response body in JSON format.

{
    "@baseType": "TopupBalance",
    "@schemaLocation": null,
    "@type": "TopupBalance",
    "amount": {
        "amount": 2.0,
        "units": "USD",
        "@baseType": null,
        "@schemaLocation": null,
        "@type": null
    },
    "bucket": {
        "id": "0.0.0.1+-balance_group+6336883+840+0",
        "href": "http://host:port/brm/prepayBalanceManagement/v4/bucket/0.0.0.1+-balance_group+6336883+840+0",
        "name": null,
        "@baseType": "BucketRef",
        "@schemaLocation": null,
        "@type": "BucketRef",
        "@referredType": null
    },
    "channel": null,
    "confirmationDate": "2021-09-30T03:06:42+05:30",
    "description": null,
    "href": "http://host:port/brm/prepayBalanceManagement/v4/topupBalance/0.0.0.1+-topup+6528179",
    "id": "0.0.0.1+-topup+6528179",
    "impactedBucket": [
        {
            "@baseType": "ImpactedBucket",
            "@schemaLocation": null,
            "@type": "ImpactedBucket",
            "amountAfter": {
                "amount": 299.0,
                "units": "USD",
                "@baseType": null,
                "@schemaLocation": null,
                "@type": null
            },
            "amountBefore": {
                "amount": 301.0,
                "units": "USD",
                "@baseType": null,
                "@schemaLocation": null,
                "@type": null
            },
            "bucket": {
                "id": "0.0.0.1+-balance_group+6336883+840+0",
                "href": "http://host:port/brm/prepayBalanceManagement/v4/bucket/0.0.0.1+-balance_group+6336883+840+0",
                "name": null,
                "@baseType": "BucketRef",
                "@schemaLocation": null,
                "@type": "BucketRef",
                "@referredType": null
            },
            "confirmationDate": null,
            "description": null,
            "item": [
                {
                    "@baseType": "ImpactedBucketItem",
                    "@schemaLocation": null,
                    "@type": "ImpactedBucketItem",
                    "amount": {
                        "amount": 2.0,
                        "units": "USD",
                        "@baseType": null,
                        "@schemaLocation": null,
                        "@type": null
                    },
                    "description": null,
                    "itemType": null,
                    "name": null,
                    "reason": null
                }
            ],
            "name": null,
            "requestedDate": null
        }
    ],
    "isAutoTopup": true,
    "logicalResource": {
        "@baseType": null,
        "@referredType": null,
        "@schemaLocation": null,
        "@type": null,
        "href": null,
        "id": null,
        "name": null,
        "value": ""
    },
    "numberOfPeriods": 2,
    "partyAccount": {
        "id": "0.0.0.1+-account+6340627",
        "href": null,
        "description": null,
        "name": "Alice Rose",
        "status": "active",
        "@baseType": null,
        "@schemaLocation": null,
        "@type": "PartyAccountRef",
        "@referredType": null
    },
    "payment": {
        "id": "0.0.0.1+-item-payment+6526899",
        "href": "http://host:port/brm/payment/v4/payment/0.0.0.1+-item-payment+6526899",
        "name": "Billing Event Log",
        "amount": {
            "unit": "USD",
            "value": 2.0
        },
        "paymentDate": "2021-09-30T03:06:43+05:30",
        "@baseType": "Payment",
        "@schemaLocation": null,
        "@type": "Payment",
        "@referredType": null
    },
    "paymentMethod": {
        "id": "0.0.0.1+-payinfo-cc+6337651",
        "href": "http://host:port/brm/paymentMethods/v1/paymentMethod/0.0.0.1+-payinfo-cc+6337651",
        "description": null,
        "isPreferred": true,
        "name": "PIN Payinfo Object",
        "status": null,
        "statusDate": null,
        "account": [
            {
                "id": "0.0.0.1+-account+6340627",
                "href": null,
                "description": null,
                "name": "Alice Rose",
                "@baseType": null,
                "@schemaLocation": null,
                "@type": null,
                "@referredType": null
            }
        ],
        "relatedParty": null,
        "validFor": null,
        "@baseType": null,
        "@schemaLocation": null,
        "@type": "tokenizedCard",
        "@referredType": null
    },
    "product": {
        "id": "0.0.0.1+-service-telco-gsm-sms+6337523",
        "href": null,
        "name": "ServiceTelcoGsmSms",
        "@baseType": null,
        "@schemaLocation": null,
        "@type": "ProductRef",
        "@referredType": null
    },
    "reason": null,
    "recurringPeriod": "1 Day",
    "relatedParty": null,
    "relatedTopupBalance": null,
    "requestedDate": "2021-09-30T03:06:42+05:30",
    "requestor": null,
    "status": "CONFIRMED",
    "usageType": "monetary",
    "voucher": ""
}
Back to Top