Skip to content

Instantly share code, notes, and snippets.

@chumaknadya
Last active September 20, 2019 14:32
Show Gist options
  • Save chumaknadya/c33b86391d80c52ab9af8ccc1daed6ad to your computer and use it in GitHub Desktop.
Save chumaknadya/c33b86391d80c52ab9af8ccc1daed6ad to your computer and use it in GitHub Desktop.
POST api/v2/applogic/admin/ieo/sales
Можна кидати такі параметри :name, :introduction_url, :currency_id, :supply, :low_goal, :commission, :owner_uid, :result, :lockup_percentage
:min_amount, :min_unit, :starts_at, :finishes_at, pairs: [:quote_currency_id, :price])
Required :name, :owner_uid, :currency_id, :supply, result
{"id": 331,
"name": "test",
"introduction_url": "http://ww.app.local",
"owner_uid": "946111b1-02cd-472d-8e12-38a321d20bb8",
"currency_id": "eth",
"supply": "34.2",
"low_goal": "0.0",
"commission": "0.0",
"min_amount": "0.0",
"min_unit": "0.0",
"state": "draft",
"collected_amount": "0.0",
"ratio": "3.4",
"result": "nothing",
"lockup_percentage": null,
"starts_at": "2019-09-19T10:30:02.000Z",
"finishes_at": "2019-09-22T10:30:02.000Z",
"created_at": "2019-09-19T10:30:02.000Z",
"updated_at": "2019-09-19T10:30:02.000Z",
"pairs":
[{"id": 104,
"sale_id": 331,
"quote_currency_id": "btc",
"price": "2.4",
"created_at": "2019-09-19T10:30:02.000Z",
"updated_at": "2019-09-19T10:30:02.000Z"},
{"id": 105,
"sale_id": 331,
"quote_currency_id":"usd",
"price": "1.4",
"created_at": "2019-09-19T10:30:02.000Z",
"updated_at": "2019-09-19T10:30:02.000Z"}]}
GET api/v2/applogic/public/ieo/sales буде ще пагінація(але поки без неї)
Аналогічний респонс на GET api/v2/applogic/admin/ieo/sales
[
{"id": 331,
"name": "test",
"introduction_url": null,
"owner_uid": "946111b1-02cd-472d-8e12-38a321d20bb8",
"currency_id": "eth",
"supply": "34.2",
"low_goal": "0.0",
"commission": "0.0",
"min_amount": "0.0",
"min_unit": "0.0",
"state": "pending",
"collected_amount": "12.0",
"ratio": "6.4",
"result": "lockup",
"lockup_percentage": "0.2",
"starts_at": "2019-09-19T10:30:02.000Z",
"finishes_at": "2019-09-22T10:30:02.000Z",
"created_at": "2019-09-19T10:30:02.000Z",
"updated_at": "2019-09-19T10:30:02.000Z",
"pairs":
[{"id": 104,
"sale_id": 331,
"quote_currency_id": "btc",
"price": "2.4",
"created_at": "2019-09-19T10:30:02.000Z",
"updated_at": "2019-09-19T10:30:02.000Z"},
{"id": 105,
"sale_id": 331,
"quote_currency_id":"usd",
"price": "1.4",
"created_at": "2019-09-19T10:30:02.000Z",
"updated_at": "2019-09-19T10:30:02.000Z"}]},
{"id": 332,
"name": "test",
"introduction_url": null,
"owner_uid": "946111b1-02cd-472d-8e12-38a321d20bb8",
"currency_id": "eth",
"supply": "34.2",
"low_goal": "0.0",
"commission": "0.0",
"min_amount": "0.0",
"min_unit": "0.0",
"state": "pending",
"collected_amount": "20.0",
"ratio": "8.4",
"result": "listing",
"lockup_percentage": null,
"starts_at": "2019-09-19T10:30:02.000Z",
"finishes_at": "2019-09-22T10:30:02.000Z",
"created_at": "2019-09-19T10:30:02.000Z",
"updated_at": "2019-09-19T10:30:02.000Z",
"pairs":
[{"id": 104,
"sale_id": 332,
"quote_currency_id": "btc",
"price": "2.4",
"created_at": "2019-09-19T10:30:02.000Z",
"updated_at": "2019-09-19T10:30:02.000Z"},
{"id": 105,
"sale_id": 332,
"quote_currency_id":"usd",
"price": "1.4",
"created_at": "2019-09-19T10:30:02.000Z",
"updated_at": "2019-09-19T10:30:02.000Z"}]}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment