Check Payment Link Status

Method: GETPath: /v1/gaming/payment_links/ Environments

Header Parameters

ParameterTypeRequiredDescriptionX-API-KEYstring✅Your secret API key. Used to authenticate server-to-server requests.X-PUBLISHABLE-KEYstring✅Your publishable API key. Identifies your merchant account in client-facing and server requests.

Path Parameters

ParameterTypeRequiredDescriptionPAYMENT_LINK_IDstring✅The payment link generated by the Create Payment Link call.

Example Request

Example Request
curl --request GET \
--url https://api-sandbox.bolt.com/v1/gaming/payment_links/{PAYMENT_LINK_ID} \
--header 'X-API-KEY: YOUR_API_KEY' \
--header 'X-PUBLISHABLE-KEY: YOUR_PUBLISHABLE_KEY'

Example Response

Example Response
{
	"transaction": {
		"reference": "FQFQ-4VVR-BBBX",
		"status": "authorized"
	},
	"payment_link_properties": {
		"id": "9qpT4pVhkniHLzGapsAxz6",
		"link": "https://abcdefake.c-sandbox.bolt.com/o?order_token=819c220124dfe16f63066f77378e3a544b42d230597eff401214627ec67e2734&payment_link_id=9qpT4pVhkniHLzGapsAxz6&publishable_key=THF7DjHcgSO8.P4WwM-oR233w.f3a8f6a469e053bebdbee21f59e13100748822ad89ba5f8808ff3fd3959d026b",
		"user_id": "0987654321",
		"game_id": "1234567890",
		"item": {
			"name": "Gems Pack",
			"price": 699,
			"currency": "USD"
		},
		"redirect_url": "bubble-merge://bolt-webcheckout/success",
		"metadata": "{\"beamable_id\":\"9876543210\",\"greeting\":\"Hello World!\"}",
		"expiration": "2025-01-01T00:00:00Z"
	}
}