Getting started
Endpoints
- Benefit applications
- Benefit categories
- Benefits
- Bookings
- Companies
- Events
- Event tickets
- Feed posts
- Invoices
- Invoice items
- Locations
- Memberships
- Networks
- Orders
- Plans
- Products
- Registrations
- Resources
- Subscriptions
- Support tickets
- Transactions
- Visitors
Events
Copy an event
Copy an event.
OAuth
Required scopes:events
POST
/
events
/
v1
/
{id}
/
copy
Copy
curl --request POST \
--url https://api.spacebring.com/events/v1/{id}/copy \
--header 'Authorization: Basic <encoded-value>'
Copy
{
"event": {
"applicationType": "purchase",
"createDate": "2023-11-07T05:31:56Z",
"description": "<string>",
"endDate": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"imageUrl": "<string>",
"limitedAttendees": {
"enabled": true,
"limit": 123
},
"locationRef": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"networkRef": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"price": {
"credits": {
"amount": 123,
"enabled": true
},
"money": {
"amount": 123,
"enabled": true
}
},
"refundThreshold": "noRefund",
"startDate": "2023-11-07T05:31:56Z",
"title": "<string>",
"venue": "<string>",
"visibilityType": "public"
}
}
Authorizations
See our authentication documentation for how to authorize your requests
Path Parameters
Response
201
application/json
Created
The response is of type object
.
Copy
curl --request POST \
--url https://api.spacebring.com/events/v1/{id}/copy \
--header 'Authorization: Basic <encoded-value>'
Copy
{
"event": {
"applicationType": "purchase",
"createDate": "2023-11-07T05:31:56Z",
"description": "<string>",
"endDate": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"imageUrl": "<string>",
"limitedAttendees": {
"enabled": true,
"limit": 123
},
"locationRef": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"networkRef": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"price": {
"credits": {
"amount": 123,
"enabled": true
},
"money": {
"amount": 123,
"enabled": true
}
},
"refundThreshold": "noRefund",
"startDate": "2023-11-07T05:31:56Z",
"title": "<string>",
"venue": "<string>",
"visibilityType": "public"
}
}
Assistant
Responses are generated using AI and may contain mistakes.