Public
Documentation Settings

gg

lets see how guntur gazelle runs

GEThello

http://172.17.0.1:8080/

hello world

Example Request
curl
curl --location 'http://172.17.0.1:8080/'
200 OK
Example Response
html
Hello World!
Server

nginx/1.17.10

Date

Sat, 07 Nov 2020 07:19:16 GMT

Content-Type

text/html; charset=utf-8

Content-Length

12

Connection

keep-alive

POSTemployee wallet creation

http://172.17.0.1:8080/api/wallet

takes wallet id and type to create new wallet with stimulus for general public, but not for other types (employee, employer, staff)

Bodyraw (json)
json
{
    "wallet_id": 7845,
    "type": "EMPLOYEE"
}
Example Request
curl
curl --location 'http://172.17.0.1:8080/api/wallet' \
--data '{
    "wallet_id": 7845,
    "type": "EMPLOYEE"
}'
200 OK
Example Response
json
{
  "txn_hash": "766d0b01f4f2afcde319d61ce0d0b16122ac7a69bd2ea2b1676cc63afda26564",
  "wallet_id": 7845
}
Server

nginx/1.17.10

Date

Sat, 07 Nov 2020 07:19:47 GMT

Content-Type

application/json

Content-Length

97

Connection

keep-alive

POSTgovt staff wallet creation

http://172.17.0.1:8080/api/wallet

takes wallet id and type to create new wallet with stimulus for general public, but not for other types (employee, employer, staff)

Bodyraw (json)
json
{
    "wallet_id": 2148,
    "type": "STAFF"
}
Example Request
curl
curl --location 'http://172.17.0.1:8080/api/wallet' \
--data '{
    "wallet_id": 2148,
    "type": "STAFF"
}'
200 OK
Example Response
json
{
  "txn_hash": "97467fb69ecc0581c7755396aa0e9f8f152781acef7a67eccbdf387536d83eea",
  "wallet_id": 2148
}
Server

nginx/1.17.10

Date

Sat, 07 Nov 2020 07:21:49 GMT

Content-Type

application/json

Content-Length

97

Connection

keep-alive

POSTpublic wallet creation

http://172.17.0.1:8080/api/wallet

takes wallet id and type to create new wallet with stimulus for general public, but not for other types (employee, employer, staff)

Bodyraw (json)
json
{
    "wallet_id": 7120,
    "type": "PUBLIC"
}
Example Request
curl
curl --location 'http://172.17.0.1:8080/api/wallet' \
--data '{
    "wallet_id": 7120,
    "type": "PUBLIC"
}'
200 OK
Example Response
json
{
  "txn_hash": "eccdf85f63d1520706908adbb0145b37c731ea492ff12384d02106ce67ab9c8e",
  "wallet_id": 7120
}
Server

nginx/1.17.10

Date

Sat, 07 Nov 2020 07:22:16 GMT

Content-Type

application/json

Content-Length

97

Connection

keep-alive