Party Currency
  1. currencies
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 all users
    • Activate user
    • Suspend user
    • Delete User
    • get events
    • get pending events
    • get users (with email)
    • change event status
    • get event transaction admin
    • get all transactions
  • currencies
    • save currency
      POST
    • get all user currency
      GET
    • get currency by id
      GET
    • update currrency
      PUT
    • delete currency
      DELETE
    • Download Image
      POST
  • merchant
    • delete event reserved account
    • Create reserved account for event
    • get merchant transactions
    • Untitled Endpoint
  1. currencies

get currency by id

Developing
GET
/currencies/get-currency/{currencyId}
get currency with currency ID
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://party-currency-app-production-5074.up.railway.app/currencies/get-currency/' \
--header 'Authorization: Token 2583d6f4fc7bbd7090a7be974a83981581da14ac'
Response Response Example
{
    "currency_id": "CURVA791",
    "currency_author": "enweremproper3@gmail.com",
    "denomination": 200,
    "event_id": "EVTPICoF",
    "created_at": "2025-06-05T04:52:19.534391-05:00",
    "updated_at": "2025-06-05T04:52:19.557360-05:00",
    "currency_name": "Party Currency",
    "front_celebration_text": "Celebration of Life",
    "front_image": "https://drive.google.com/file/d/1no2NMN3cQeBB-rvQMttwTnTwc5fqQ-y3/view?usp=sharing",
    "back_image": "https://drive.google.com/file/d/1NfZsl22t7TmaRrfi8-nr6qwW_tklaKwc/view?usp=sharing",
    "back_celebration_text": "Celebration of Life"
}

Request

Path Params
currencyId
string 
required
Header Params
Authorization
string 
optional
Example:
Token 2583d6f4fc7bbd7090a7be974a83981581da14ac

Responses

🟢200Success
application/json
Body
object {0}
Previous
get all user currency
Next
update currrency
Built with