Project

General

Profile

Marketplace » History » Version 6

Ryan Supawarapong, 02/17/2026 06:58 AM

1 1 Ryan Supawarapong
# Marketplace
2
3 4 Ryan Supawarapong
## Diagram
4
5 5 Ryan Supawarapong
!!! sequence diagram here
6 4 Ryan Supawarapong
7 6 Ryan Supawarapong
<img style="width: 226px;" src="clipboard-202602171357-fmt5h.png"><br>
8
```
9
@startuml
10
11
start
12
13
:user sell asset;
14
15
if (Asset enough?) then (yes)
16
    :create sell post;
17
else (no)
18
    :error;
19
endif
20
21
22
end
23
24
@enduml
25
```
26 4 Ryan Supawarapong
27 2 Ryan Supawarapong
## API route
28
29
### Get info
30
Allow authenticated user to get listing of market place
31
32 3 Ryan Supawarapong
| Type | Value |
33
| ---- | ----- | 
34
| API URL | /api/v1/customer/marketplace/listing/get |
35
| Type | Get |
36
| Param/Body Input | N/A |
37 1 Ryan Supawarapong
38
39 3 Ryan Supawarapong
#### Response
40
41 1 Ryan Supawarapong
| JSON Path | Type | Example | Required |
42
|---|---|---|---|
43
| status | string | "success" | yes |
44
| xid | string | "xRequestID" | yes |
45
| data | object | {"marketplace":[...]} | yes |
46
| data.marketplace | array<object| [ { ... } ] | yes |
47
| data.marketplace[].id | integer | 1 | yes |
48
| data.marketplace[].icoCode | string | "product1" | yes |
49
| data.marketplace[].from | integer | 90000004 | yes |
50
| data.marketplace[].to | integer | 0 | yes |
51
| data.marketplace[].unitAmount | integer | 10 | yes |
52
| data.marketplace[].unitPrice | number | 2 | yes |
53
| data.marketplace[].totalPrice | number | 20 | yes |
54
| data.marketplace[].status | integer | 0 | yes |
55
| data.marketplace[].CreatedAt | string (date-time) | "2024-06-01T00:00:00Z" | yes |
56
| data.marketplace[].UpdatedAt | string (date-time) | "0001-01-01T00:00:00Z" | yes |
57 2 Ryan Supawarapong
| data.marketplace[].DeletedAt | null/object | null | yes |
58 1 Ryan Supawarapong
59 3 Ryan Supawarapong
##### Example response body
60 1 Ryan Supawarapong
| Body | Value |
61
|---|---|
62
| JSON | {"status":"success","xid":"xRequestID","data":{"marketplace":[{"id":1,"icoCode":"product1","from":90000004,"to":0,"unitAmount":10,"unitPrice":2,"totalPrice":20,"status":0,"CreatedAt":"2024-06-01T00:00:00Z","UpdatedAt":"0001-01-01T00:00:00Z","DeletedAt":null},{"id":2,"icoCode":"product2","from":90000005,"to":0,"unitAmount":5,"unitPrice":3,"totalPrice":15,"status":0,"CreatedAt":"2024-06-01T00:00:10Z","UpdatedAt":"0001-01-01T00:00:00Z","DeletedAt":null},{"id":3,"icoCode":"product3","from":90000006,"to":90000005,"unitAmount":8,"unitPrice":1.5,"totalPrice":12,"status":2,"CreatedAt":"2024-06-01T00:00:20Z","UpdatedAt":"0001-01-01T00:00:00Z","DeletedAt":null}]}} |