Managem
HomeLink
Multiple Menus
  • Link1
  • Link2
HomeLink
Multiple Menus
  • Link1
  • Link2
  1. Users
  • Users
  • APIs
    • Basket
      • List items in the basket
      • Add an item to the basket
      • Update an item in the basket
      • Remove an item from the basket
      • Retrieve the basket summary
      • Retrieve the basket information, fees & delivery costs
      • Create a checkout session for the basket
    • Conversations
      • List conversations
      • Create conversation
      • Count unread messages
      • List messages
      • Send a message
    • Search
      • Search using full-text and facets
      • Lookup usernames
      • Retrieve an item by its URN or slug
      • Retrieve multiple items by URN
      • Retrieve a faceted hierarchy of items
      • Retrieve search results for a specific game
      • Retrieve search results for a specific set
      • Retrieve search results for a specific type
    • Sellers
      • Create listing
      • Search listings
      • Get listing
      • Update listing
      • Delete listing
      • Create image upload URL
      • Get delivery configuration
      • Upsert delivery configuration
      • List orders
      • Get order
      • Create seller account
      • Get seller account
      • Get seller status
      • Get dashboard link
      • Get seller balance
      • Withdraw funds
      • List payouts
      • List transfers
    • Seller Listings
      • Search listings
      • Search a seller's listings
      • Search listings for a specific item
      • Retrieve historical prices for an item
    • Users
      • Find/Lookup addresses
        POST
      • Retrieve full address details
        POST
      • Store a new Address
        POST
      • List all Addresses
        GET
      • Delete an Address
        DELETE
      • Get user account information
        GET
      • Update user password
        PUT
      • Update user profile
        PUT
      • Update a users email address by first requesting a verification code
        PATCH
      • Update a user's email address by verifying the received code
        PUT
      • Create payment method
        POST
      • List payment methods
        GET
      • Delete payment method
        DELETE
      • List purchases
        GET
      • Get purchase
        GET
      • List reviews
        GET
      • Create review
        POST
      • Update review
        PUT
      • Delete review
        DELETE
    • Profiles
      • Get user profile
      • List reviews
  1. Users

Create payment method

POST
/user/payment-methods
Create a new payment method for the authenticated user. If the user does not yet have a Stripe customer record, one will be created automatically using their account details.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.managem.co.uk/user/payment-methods' \
--header 'Content-Type: application/json' \
--data-raw '{
    "token": "string"
}'
Response Response Example
{
    "id": "string",
    "brand": "string",
    "last4": "string",
    "expMonth": 0,
    "expYear": 0
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢201Created
application/json
Payment method created
Body

Previous
Update a user's email address by verifying the received code
Next
List payment methods
Built with