Brushfire PaymentProfiles API
The PaymentProfiles API from Brushfire — 4 operation(s) for paymentprofiles.
The PaymentProfiles API from Brushfire — 4 operation(s) for paymentprofiles.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/brushfire-paymentprofiles-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: 'Brushfire API: Version 2025-07-22 AccessCodes Payment Profiles API'
version: '2025-07-22'
description: 'The Brushfire REST API provides programmatic access to the Brushfire event ticketing and registration platform. It covers events, ticket types, sections and seats, attendees, orders, the shopping cart and checkout flow, groups, sessions and check-in, promotions and access codes, payment profiles, and webhooks (Hooks). Authenticate by sending your App Key (requested at https://developer.brushfire.com/key) in the Authorization header. The API is date-versioned: send the desired version in the api-version request header (for example, 2025-07-22). This document is the live specification published at api.brushfire.com/swagger.'
contact:
name: Brushfire Developers
url: https://developer.brushfire.com
servers:
- url: https://api.brushfire.com
description: Brushfire API (date-versioned via the api-version header)
tags:
- name: PaymentProfiles
paths:
/paymentprofiles:
get:
tags:
- PaymentProfiles
summary: Returns all payment profiles for the specified client
parameters:
- name: clientId
in: query
description: A string, a GUID, or an integer that corresponds to a specific client
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/PaymentProfileListOutput'
text/json:
schema:
type: array
items:
$ref: '#/components/schemas/PaymentProfileListOutput'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiModelError'
text/json:
schema:
$ref: '#/components/schemas/ApiModelError'
security:
- apiKey: []
/paymentprofiles/{paymentProfileId}:
get:
tags:
- PaymentProfiles
summary: Returns the details of the specified payment profile
parameters:
- name: paymentProfileId
in: path
description: A GUID that corresponds to a specific payment profile
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PaymentProfileSingleOutput'
text/json:
schema:
$ref: '#/components/schemas/PaymentProfileSingleOutput'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiModelError'
text/json:
schema:
$ref: '#/components/schemas/ApiModelError'
security:
- apiKey: []
/paymentprofiles/{paymentProfileId}/locations:
get:
tags:
- PaymentProfiles
summary: Returns the locations associated with the merchant ID of a given payment profile.
parameters:
- name: paymentProfileId
in: path
description: A GUID that corresponds to a specific payment profile
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/LocationSingleOutput'
text/json:
schema:
type: array
items:
$ref: '#/components/schemas/LocationSingleOutput'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiModelError'
text/json:
schema:
$ref: '#/components/schemas/ApiModelError'
security:
- apiKey: []
/paymentprofiles/{paymentProfileId}/terminals:
get:
tags:
- PaymentProfiles
summary: Returns all terminals registered to the account associated with the supplied payment profile
parameters:
- name: paymentProfileId
in: path
description: A GUID that corresponds to a specific payment profile
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TerminalOutput'
text/json:
schema:
type: array
items:
$ref: '#/components/schemas/TerminalOutput'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiModelError'
text/json:
schema:
$ref: '#/components/schemas/ApiModelError'
security:
- apiKey: []
post:
tags:
- PaymentProfiles
summary: Add a terminal to the supplied payment profile
parameters:
- name: paymentProfileId
in: path
description: A GUID that corresponds to a specific payment profile
required: true
schema:
type: string
requestBody:
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/TerminalCreateInput'
text/json:
schema:
$ref: '#/components/schemas/TerminalCreateInput'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/TerminalCreateInput'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/TerminalCreateOutput'
text/json:
schema:
$ref: '#/components/schemas/TerminalCreateOutput'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ApiModelError'
text/json:
schema:
$ref: '#/components/schemas/ApiModelError'
security:
- apiKey: []
components:
schemas:
LocationSingleOutput:
type: object
properties:
Id:
type:
- string
- 'null'
Name:
type:
- string
- 'null'
Address:
type:
- string
- 'null'
readOnly: true
IsSelected:
type: boolean
IsActive:
type: boolean
additionalProperties: false
TerminalOutput:
type: object
properties:
Id:
type:
- string
- 'null'
SerialNumber:
type:
- string
- 'null'
Name:
type:
- string
- 'null'
Display:
type:
- string
- 'null'
additionalProperties: false
PaymentProfileSingleOutput:
type: object
properties:
Id:
type: string
format: uuid
Name:
type:
- string
- 'null'
AccountName:
type:
- string
- 'null'
GatewayId:
type: string
format: uuid
GatewayName:
type:
- string
- 'null'
SupportsAutoFees:
type: boolean
SupportsSideloading:
type: boolean
AllowsReferenceSales:
type: boolean
AllowsStandaloneCredits:
type: boolean
ReferenceDayLimit:
type: integer
format: int32
Options:
type:
- object
- 'null'
additionalProperties:
type:
- string
- 'null'
ElectronicPaymentMethods:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/PaymentMethodListOutput'
Config:
$ref: '#/components/schemas/PaymentProfileConfigOutput'
additionalProperties: false
ApiModelError:
type: object
properties:
Errors:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/StringStringKeyValuePair'
Message:
type:
- string
- 'null'
Data: {}
StackTrace:
type:
- string
- 'null'
additionalProperties: false
StringStringKeyValuePair:
type: object
properties:
Key:
type:
- string
- 'null'
Value:
type:
- string
- 'null'
additionalProperties: false
PaymentProfileConfigInvoiceItem:
type: object
properties:
AllowAdmin:
type: boolean
AllowInternet:
type: boolean
RelativeDays:
type: integer
format: int32
additionalProperties: false
PaymentProfileListOutput:
type: object
properties:
Id:
type: string
format: uuid
Name:
type:
- string
- 'null'
AccountName:
type:
- string
- 'null'
GatewayId:
type: string
format: uuid
GatewayName:
type:
- string
- 'null'
SupportsAutoFees:
type: boolean
SupportsSideloading:
type: boolean
AllowsReferenceSales:
type: boolean
AllowsStandaloneCredits:
type: boolean
ReferenceDayLimit:
type: integer
format: int32
Options:
type:
- object
- 'null'
additionalProperties:
type:
- string
- 'null'
ElectronicPaymentMethods:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/PaymentMethodListOutput'
Config:
$ref: '#/components/schemas/PaymentProfileConfigOutput'
additionalProperties: false
PaymentProfileConfigOutput:
type: object
properties:
LocationId:
type:
- string
- 'null'
LocationName:
type:
- string
- 'null'
MerchantId:
type:
- string
- 'null'
MerchantName:
type:
- string
- 'null'
AccessToken:
type:
- string
- 'null'
Currency:
type:
- string
- 'null'
InternalDescription:
type:
- string
- 'null'
Invoice:
$ref: '#/components/schemas/PaymentProfileConfigInvoiceItem'
Scopes:
type:
- array
- 'null'
items:
type: string
Status:
type:
- string
- 'null'
AllowCards:
type: boolean
AllowWallets:
type: boolean
AllowAch:
type: boolean
AllowAfterpay:
type: boolean
AllowCashApp:
type: boolean
AllowGiftCards:
type: boolean
additionalProperties: false
TerminalCreateInput:
type: object
properties:
LocationId:
type:
- string
- 'null'
PairingCode:
type:
- string
- 'null'
additionalProperties: false
TerminalCreateOutput:
type: object
properties:
Id:
type:
- string
- 'null'
SerialNumber:
type:
- string
- 'null'
PairingCode:
type:
- string
- 'null'
additionalProperties: false
PaymentMethodListOutput:
type: object
properties:
Id:
type: string
format: uuid
Name:
type:
- string
- 'null'
IsEnabled:
type: boolean
additionalProperties: false
securitySchemes:
apiKey:
type: apiKey
description: The App Key you received from https://developer.brushfire.com/key
name: Authorization
in: header