Party Currency
  1. events
Party Currency
  • Start your Apidog journey
  • Authentication
    • Login
      POST
    • signup user
      POST
    • signup merchant
      POST
    • Google
      POST
  • user
    • profile picture
      • get profile pictue
      • upload profile picture
    • create event
      POST
    • edit user profile
      PUT
    • get all user transactions
      GET
    • Get User Profile
      GET
  • events
    • create event
      POST
    • get events
      GET
    • get event details
      GET
    • delete event
      DELETE
    • save currency image
      PUT
    • get currency by event id
      GET
    • get event transaction
      GET
  • payment
    • generate transcation
      POST
    • pay
      POST
  • admin
    • get admin dashboard details
      GET
    • get all users
      GET
    • Activate user
      PUT
    • Suspend user
      PUT
    • Delete User
      DELETE
    • get events
      GET
    • get pending events
      GET
    • get users (with email)
      GET
    • change event status
      POST
    • get event transaction admin
      GET
    • get all transactions
      GET
  • currencies
    • save currency
    • get all user currency
    • get currency by id
    • update currrency
    • delete currency
    • Download Image
  • merchant
    • delete event reserved account
    • Create reserved account for event
    • get merchant transactions
    • Untitled Endpoint
  1. events

get currency by event id

Developing
GET
/events/get-currency
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://party-currency-app-production-5074.up.railway.app/events/get-currency' \
--header 'Authorization: Token c4f2ca46a21123ecba3bfde722942c9c18dfc457' \
--header 'Content-Type: application/json' \
--data-raw '{
    "event_id": "string"
}'
Response Response Example
{
    "message": "Currency retrieved successfully",
    "event_id": "EVT3fKfv",
    "currency": [
        {
            "currency_id": "CURyv3Fj",
            "currency_author": "enweremproper2@gmail.com",
            "denomination": 1000,
            "event_id": "EVT3fKfv",
            "created_at": "2025-05-23T00:57:54.533812-05:00",
            "updated_at": "2025-05-23T00:57:54.571749-05:00",
            "currency_name": "Party Currency",
            "front_celebration_text": "Happy Birthday!",
            "front_image": "https://drive.google.com/file/d/1JnFoDS0YhZjbWjcBavQXNXSoxP6blrDn/view?usp=sharing",
            "back_image": "https://drive.google.com/file/d/1w2IE6vgBrfYHRbqTwEm7hom6oou7wxn4/view?usp=sharing",
            "back_celebration_text": "Happy Birthday!"
        },
        {
            "currency_id": "CURrFxFX",
            "currency_author": "archived",
            "denomination": 500,
            "event_id": "EVT3fKfv",
            "created_at": "2025-05-22T22:08:32.850703-05:00",
            "updated_at": "2025-05-23T03:40:55.210104-05:00",
            "currency_name": "Wedding Party",
            "front_celebration_text": "Happy Birthday!",
            "front_image": null,
            "back_image": "https://drive.google.com/file/d/1koxUVL3q1QuAXyifPsjhx8_kMJ8uf988/view?usp=sharing",
            "back_celebration_text": "Happy Birthday!"
        },
        {
            "currency_id": "CURmftB3",
            "currency_author": "enweremproper2@gmail.com",
            "denomination": 200,
            "event_id": "EVT3fKfv",
            "created_at": "2025-05-22T22:00:07.502778-05:00",
            "updated_at": "2025-05-22T22:00:07.535487-05:00",
            "currency_name": "Party Currency",
            "front_celebration_text": "Wedin Pary",
            "front_image": "https://drive.google.com/file/d/1RaBreMnOej5RR3PP5g77w1oe8f1G-Ppm/view?usp=sharing",
            "back_image": null,
            "back_celebration_text": "The wedding party"
        }
    ]
}

Request

Header Params
Authorization
string 
optional
Example:
Token c4f2ca46a21123ecba3bfde722942c9c18dfc457
Body Params application/json
event_id
string 
required
Examples

Responses

🟢200Success
application/json
Body
object {0}
Modified at 2025-05-23 08:46:03
Previous
save currency image
Next
get event transaction
Built with