Skip to main content
POST
https://enterprise.spacemedia.uk
/
api
/
v1
/
subscriptions
/
subscribe
/
{package}
/
payment-verify
Verify Subscription Checkout
curl --request POST \
  --url https://enterprise.spacemedia.uk/api/v1/subscriptions/subscribe/{package}/payment-verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "payment_intent_id": "80a6bb2d-1f32-4a4d-915f-fb0f8ec43f59"
}
'
{
  "data": [
    {
      "id": "8d05960b-2460-4e4a-937b-fd89aa8c0f9a",
      "uuid": "8d05960b-2460-4e4a-937b-fd89aa8c0f9a",
      "is_active": true,
      "package": {
        "id": "pkg_pro_2026",
        "uuid": "pkg_pro_2026",
        "name": "Pro Organization",
        "type": "membership",
        "price": 49,
        "currency": "GBP",
        "interval": "monthly",
        "status": "published"
      },
      "gateway": "stripe"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.spacemedia.uk/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept
string

Use application/json for API responses.

Authorization
string

Bearer access token. Use Bearer <YOUR_ACCESS_TOKEN>.

X-User-Id
string

Optional user UUID to perform the request on behalf of a user in the same organization.

Path Parameters

package
string
required

The ID of the membership package to subscribe to.

Body

application/json

The body is of type object.

Response

Success

The response is of type object.