YUEX - Kripto Para REST Fonksiyonları
Bu doküman YUEX'in üçüncü parti sistemlerle iletişimini ve yönetilmesini sağlayan fonksiyonların kullanımını içerir.
Error Handling:
{
"error": "authentication failed",
"success": false
}
Index:
YUEX'in servisleri ve endpoint path'leri.
- YUEXBLC
- /api/v1/blc/address/:coin
- /api/v1/blc/lasttransactions
- /api/v1/blc/sendaddress
- /api/v1/blc/balance/limits
- /api/v1/blc/deposit/create
- /api/v1/blc/deposit/cancel
- /api/v1/blc/deposit/fee
- /api/v1/blc/deposit/control
- /api/v1/blc/withdrawal/saveaddr
- /api/v1/blc/withdrawal/deleteaddr
- /api/v1/blc/withdrawal/listaddr
- /api/v1/blc/withdrawal/control
- /api/v1/blc/withdrawal/confirm
- /api/v1/blc/withdrawal/create
- /api/v1/blc/withdrawal/cancel
- /api/v1/blc/withdrawal/fee
- YUEXLG
- /api/v1/lg/lookup
- /api/v1/lg/assets.jsp
- /api/v1/lg/securityimage
- /api/v1/lg/user/config
- /api/v1/lg/user/user
- /api/v1/lg/user/login
- /api/v1/lg/user/login/auth
- /api/v1/lg/user/register
- /api/v1/lg/user/confirmemail
- /api/v1/lg/user/confirminvitation
- /api/v1/lg/user/checkemail
- /api/v1/lg/user/checkphone
- /api/v1/lg/user/checkinvitation
- /api/v1/lg/user/resendsms
- /api/v1/lg/user/forgotpassword
- /api/v1/lg/user/suspectprocess
- /api/v1/lg/user/resetpassword
- /api/v1/lg/user/totpsecret
- /api/v1/lg/user/invitations
- /api/v1/lg/user/invitationinfo
- /api/v1/lg/user/verification
- /api/v1/lg/user/changedarklayout
- /api/v1/lg/user/cities
- /api/v1/lg/user/towns
- /api/v1/lg/user/logout
- /api/v1/lg/user/changetimeout
- /api/v1/lg/user/changepassword
- /api/v1/lg/user/confirmpassword
- /api/v1/lg/user/changetotp
- /api/v1/lg/user/confirmtotp
- /api/v1/lg/user/checktotp
- /api/v1/lg/user/changeantispam
- /api/v1/lg/user/sendtotpchangesms
- /api/v1/lg/user/verification
- /api/v1/lg/user/verificationsave
- /api/v1/lg/user/verificationremove
- /api/v1/lg/user/confirmaccount
- /api/v1/lg/user/confirmsms
- /api/v1/lg/user/createinvitation
- /api/v1/lg/user/cancelinvitation
- YUEXCRR
- /api/v1/crr/pairs
- /api/v1/crr/currencies
- YUEXCRT
- /api/v1/crt/udf/config
- /api/v1/crt/udf/time
- /api/v1/crt/udf/symbols
- /api/v1/crt/udf/history
- YUEXPLC
- /api/v1/plc/order/new
- /api/v1/plc/order/cancel
- /api/v1/plc/order/active/all
- /api/v1/plc/order/history/all
- /api/v1/plc/order/active/summary
- /api/v1/plc/order/history/summary
- /api/v1/plc/fee/now
- YUEXSPP
- /api/v1/ssp/announcements
- YUEXAC
- /api/v1/ac/user/lastactions
- YUEXMC
- /api/v1/mc/addblc
- /api/v1/mc/balance/now
- YUEXNC
- /api/v1/nc/user/notices
- /api/v1/nc/user/notifications
- YUEXUAC
- /api/v1/ac/user/lastactions
Kullanıcıların varlıklarının tutulduğu Balance servisidir.
Kullanıcıya istediği COIN'de yeni bir adres verir.
Request:
curl http://localhost/api/v1/blc/address/BTC
Response:
struct {
Success bool `json:"success"`
Coin string `json:"coin"`
Address string `json:"address"`
}
Yatırma çekme işlemlerinin toplu listesini göstermek için kullanılır
Request:
type LastUserPayments struct {
Page int `form:"page" binding:"required"`
RowsPerPage int `form:"rowsperpage" binding:"required"`
SortBy string `form:"sortby"`
Descending bool `form:"descending"`
}
Response:
type LastUserPaymentResponse struct {
Status int8 `json:"status"`
Price string `json:"price"`
PriceTotal string `json:"pricetotal"`
Fee string `json:"fee"`
LastBalance string `json:"lastbalance"`
CurrencyType string `json:"currencytype"`
ConfirmCountCurrent int64 `json:"confirmcountcurrent"`
ConfirmCountTotal int64 `json:"confirmcounttotal"`
PaymentType uint8 `json:"paymenttype"`
RejectionReason string `json:"rejectionreason"`
CreatedAt int64 `json:"createdat"`
}
Kullanıcın Coin adresini SMS veya Email ile almasını sağlar.
Request:
type SendAddrRequest struct {
Coin string `json:"coin" binding:"required"`
SendWith string `json:"sendwith" binding:"required"`
}
Response:
{
success: true
}
Kulanıcının işlem limitlerini bildirir.
Request:
Response:
type LimitsView struct {
DailyDepositLimit float64 `json:"ldd"`
MonthlyDepositLimit float64 `json:"lmd"`
DailyWithdrawalLimit float64 `json:"ldw"`
MonthlyWithdrawalLimit float64 `json:"lmw"`
DailyDepositPercent int `json:"pdd"`
MonthlyDepositPercent int `json:"pmd"`
DailyWithdrawalPercent int `json:"pdw"`
MonthlyWithdrawalPercent int `json:"pmw"`
DailyDepositCurrent float64 `json:"cdd"`
MonthlyDepositCurrent float64 `json:"cmd"`
DailyWithdrawalCurrent float64 `json:"cdw"`
MonthlyWithdrawalCurrent float64 `json:"cmw"`
DailyDepositRemain float64 `json:"rdd"`
MontlyDepositRemain float64 `json:"rmd"`
DailyWithdrawalRemain float64 `json:"rdw"`
MontlyWithdrawalRemain float64 `json:"rmw"`
}
Kullanıcı para yatırma işlemini gerçekleştirir.
Request:
type DepositCreateRequest struct {
Amount float64 `json:"amount" binding:"required,greaterthanzero"`
Symbol string `json:"symbol" binding:"required"`
Provider string `json:"provider" binding:"required"`
Address string `json:"address"`
}
Response:
{"success": true,
"error": "",
"global": globalid,
"redirection": false,
"redirecturl": "",
"bankiban": bankIban,
"bankreceiver": bankReceiver}
Para yatırma işlemini iptal eder.
type DepositCancelRequest struct {
GlobalID string `json:"global" binding:"required"`
}
{
"success": true
}
Komisyon ve vergi tutarlarını hesaplar
Request
type DepositFeeRequest struct {
Amount float64 `json:"amount" binding:"required,greaterthanzero"`
Symbol string `json:"symbol" binding:"required"`
Provider string `json:"provider" binding:"required"`
}
{
"success": true,
"fee": fee,
"tax": tax,
"total": total
}
Kullanıcının deposit isteği var mı diye kontrol eder.
Request:
curl http://localhost/api/v1/blc/deposit/control
Response:
{
"success": true,
"have": true,
"total": activeDeposit.LastAmount,
"amount": activeDeposit.Amount,
"tax": activeDeposit.Tax,
"fee": activeDeposit.Fee,
"provider": activeDeposit.Provider,
"global": activeDeposit.GlobalID,
"redirection": redirection,
"redirecturl": redirectURL,
}
Kullanıcının para çekme adresini kaydeder.
type SaveAddrRequest struct {
Name string `json:"name" binding:"required,max=30"`
Addr string `json:"address" binding:"required"`
Provider string `json:"provider" binding:"required,max=30"`
Currency string `json:"currency" binding:"required,max=10"`
}
Response:
{
"success": true
}
Kullanıcı para çekme adresini siler
Request:
type DeleteSavedAddr struct {
Addr string `json:"address" binding:"required"`
Provider string `json:"provider" binding:"required,max=30"`
Currency string `json:"currency" binding:"required,max=10"`
}
Response:
{
"success": true
}
Kullanıcının para çekmede kullandığı adresleri listeler.
Request:
type GetSavedAddr struct {
Provider string `json:"provider" binding:"required,max=30"`
Currency string `json:"currency" binding:"required,max=10"`
}
Response: Array []UserSavedAddress
type UserSavedAddress struct {
ID uint64 `json:"-" gorm:"primary_key;AUTO_INCREMENT"`
UserID uint64 `json:"-" gorm:"column:user_id;not null;"`
Currency string `json:"currency" gorm:"column:currency"`
Provider string `json:"provider" gorm:"column:provider;not null;"`
Name string `json:"name" gorm:"column:name;size:40;not null;"`
Addr string `json:"addr" gorm:"column:addr;not null;"`
}
{
"addresses": []UserSavedAddress,
"success": true,
}
Kullanıcının withdraw isteğinden once atılır, aktif withdraw isteği var mi diye bakilir.
Request:
type ControlWithdraw struct {
Symbol string `form:"symbol" binding:"required"`
}
Response:
{
"success": true,
"have": true,
"total": activeWithdrawal.LastAmount,
"amount": activeWithdrawal.Amount,
"tax": activeWithdrawal.Tax,
"fee": activeWithdrawal.Fee,
"provider": activeWithdrawal.Provider,
"global": activeWithdrawal.GlobalID,
}
Mail konfirmasyonundan sonra withdraw işlemini tamamlayan handler
type ConfirmWithdraw struct {
Hash string `form:"hash" binding:"required"`
}
Response:
{
"success": true
}
Para çekme isteği gerçekleştirir.
type WithdrawalCreateRequest struct {
Amount float64 `json:"price" binding:"required,greaterthanzero"`
Symbol string `json:"currencytype" binding:"required"`
Provider string `json:"provider" binding:"required"`
Address string `json:"paymentaddress"`
}
{
"success": true
}
Para çekme isteğini iptal eder.
Request:
type WithdrawalCancelRequest struct {
GlobalID string `json:"global" binding:"required"`
}
Response:
{
"success": true
}
Para çekme isteğindeki komisyonları hesaplar.
type WithdrawalFeeRequest struct {
Amount float64 `json:"amount" binding:"required,greaterthanzero"`
Symbol string `json:"symbol" binding:"required"`
Provider string `json:"provider" binding:"required"`
}
Response:
{
"success": true,
"fee": fee,
"tax": tax,
"total": total
}
Sistemin desteklediği para birimlerini kullanıcının balance'ı ile birlikte verir.
Request:
Response:
map[string]map[string]models.Pair
type Pair struct {
ID int `json:"-" gorm:"primary_key;AUTO_INCREMENT"`
Index int8 `json:"-" gorm:"column:index"`
Base string `json:"base" gorm:"column:base;size:255"`
Second string `json:"second" gorm:"column:second;size:255"`
Enabled bool `json:"-" gorm:"column:enabled"`
Min float64 `json:"min" gorm:"column:min"`
Max float64 `json:"max" gorm:"column:max"`
Bdigit int32 `json:"bdigit" gorm:"column:bdigit"` //base second base digita, amount
Sdigit int32 `json:"sdigit" gorm:"column:sdigit"` //second digit, price
Pdigit int32 `json:"pdigit" gorm:"column:pdigit"` //price digit, order price
}
Parabirimlerini ve kullanıcı balance'ını getirir.
Request:
Response:
type CurrencyResponse struct {
Currencies []Currency `json:"currencies"`
Blocks []models.UserPaymentBlock `json:"blocks"`
}
TRADINGVIEW vb. üzerindeki verileri hazırlar.
Request:
Response:
{
"supported_resolutions": config.Chart.SupportedResolutions,
"supports_group_request": config.Chart.SupportsGroupRequest,
"supports_marks": config.Chart.SupportsMarks,
"supports_search": config.Chart.SupportsSearch,
"supports_time": config.Chart.SupportsTime,
}
Response:
Unix Time
1621510575
Request:
Response:
type UDFSymbolsResponse struct {
Name string `json:"name"`
Symbol string `json:"symbol"`
Description string `json:"description"`
ExchangeListed string `json:"exchange_listed"`
ExchangeTraded string `json:"exchange_traded"`
Minmov string `json:"minmov"`
Minmov2 string `json:"minmov2"`
Pricescale string `json:"pricescale"`
HasDwm string `json:"has_dwm"`
Timezone string `json:"timezone"`
HasIntraday string `json:"has_intraday"`
HasNoVolume string `json:"has_no_volume"`
Type string `json:"type"`
Ticker string `json:"ticker"`
SessionRegular string `json:"session_regular"`
}
Request:
Response:
type UDFChartHistory struct {
Status string `json:"s"`
Times []int64 `json:"t"`
ClosingPrices []float64 `json:"c"`
OpeningPrices []float64 `json:"o"`
HighPrices []float64 `json:"h"`
LowPrices []float64 `json:"l"`
Volumes []float64 `json:"v"`
}
Alım satım işlerinin yönetildiği servistir.
Açık order özetini verir
Request:
{
"base":"",
"second":""
}
Response:
{
"success":true,
"records":[
{
"id":"",
"status":0,
"side":"",
"amount":"",
"price":"",
"total":"",
"stop":"",
"createdat":0
}
]
}
Açık olmayan order özetini verir
Request:
{
"base":"",
"second":""
}
Response:
{
"success":true,
"records":[
{
"side":"",
"amount":"",
"price":"",
"total":"",
"createdat":0
}
]
}
Açık orderları getirir
Request:
{
"page":0,
"rowsPerPage":0,
"sortBy":"",
"descending":false
}
Response:
type UserOrderResponse struct {
Global string `json:"id"`
Status int8 `json:"status"`
Base string `json:"base"`
Second string `json:"second"`
Type string `json:"type"`
Side string `json:"side"`
Amount string `json:"amount"`
Price string `json:"price"`
Stop string `json:"stop"`
Total string `json:"total"`
CreatedAt int64 `json:"createdat"`
Easy bool `json:"easy"`
}
Tamamlanan orderlar listelenir
Request:
{
"page":0,
"rowsPerPage":0,
"sortBy":"",
"descending":false
}
type UserInactiveOrderResponse struct {
Base string `json:"base"`
Second string `json:"second"`
Type string `json:"type"`
Side string `json:"side"`
Amount string `json:"amount"`
Price string `json:"price"`
Total string `json:"total"`
Fee string `json:"fee"`
CreatedAt int64 `json:"createdat"`
}
Yeni order girilmesini sağlar
Request:
type OrderRequest struct {
Base string `json:"base" binding:"required"` //BTC
Second string `json:"second" binding:"required"` //TRY
Type string `json:"type" binding:"required" validate:"market|limit|stop_market|stop_limit"` //market, limit, smarket, slimit
Side string `json:"side" binding:"required" validate:"buy|sell"` //BUY veya SELL
Amount string `json:"amount" binding:"required"` //Miktar 0.2 BTC
Price string `json:"price" binding:"required"` //Limit 36.200 TL
Stop string `json:"stop" binding:"required"` //Trigger fiyatı
Easy bool `json:"easy"` //Kolay Al-Sat için gerekli.
}
Response:
{
"error":"",
"success":true,
"id":0,
"status":0,
"amount":"",
"base":"",
"second":"",
"price":"",
"side":0,
"stop":"",
"total":""
}
Aktif orderı iptal etmek için kullanılır
Request:
type CancelOrderRequest struct {
Global string `json:"id" form:"id" binding:"required"`
}
Response:
{
"success":true,
"id":""
}
User'ın mevcut volume'ü üzerinden grafik için gerekli bilgileri getirir
Request:
Response:
{
"success": true,
"ucv": "", // user current volume
"ucvp": 0, // user current volume percent
"cve": "", // current volume end
"cfm": 0, // current fee maker
"cft": 0, // current fee taker
"nfm": 0, // next fee maker
"nft": 0 // next fee taker
}
Duyuruların yönetildiği servistir
Duyuruların listelenmesi sağlanır
Request:
{
"locale":"",
"limit":0
}
Response:
{
"success":true,
"anouncements":{
"article":[
{
"url":"",
"date":"",
"title":"",
"content":""
}
]
}
}
Son kullanıcı hareketlerini sayfa bazlı olarak çeker
Request:
{
"page":0,
"rowsPerPage":0,
"sortBy":"",
"descending":false
}
Response:
{
"success":true,
"totalrecords":0,
"records":[
{
"id":0,
"action":"",
"data":"",
"ipaddress":"",
"useragent":"",
"createdat":0,
"userid":0
}
]
}
Bildirim ve uyarı yönetimi servisidir
Kullanıcının tüm bildirim ayarlarını getirir
Request:
Response:
[]map[string]interface{}
Bildirim ayarlarını değiştirmede kullanılır
Request:
type UpdateUserNotificationRequest struct {
Notifications []Notification `json:"notifications" binding:"required"`
}
//Notification tekli notification yapısı
type Notification struct {
Action string `json:"action"`
ViaEmail bool `json:"via_email"`
ViaSMS bool `json:"via_sms"`
}
Response:
{
"success": true
}
Kullanıcının tüm bildirimlerini getirir
Request:
Response:
{
"success":true,
"broadcasts":[
{
"id":0,
"content":"",
"action":"",
"userid":0,
"type":0,
"isreaded":false,
"createdat":0,
"expiredat":0
}
],
"notices":[
{
"id":0,
"content":"",
"action":"",
"userid":0,
"type":0,
"isreaded":false,
"createdat":0,
"expiredat":0
}
]
}
Kullanıcının kayıt ve kimlik doğrulamalarını gerçekleştirdiği servistir.
Kullanıcı sistemden yanıt alabiliyormu diye kontrol eder.
Request:
Response:
{
Check int
Status bool
}
Web uygulaması buraya ayakta olup olmadığını kontrol etmek için bilgi gönderir. Cookie ve Session burada tanımlanır.
Request:
Response:
{
Status bool `json:"status"`
}
Login aşamasında gelen güvenlik resmini output eden endpoint
Kullanıcı konfigurasyonu getirir.
Request:
curl -X POST http://localhost/api/v1/lg/user/config
Response:
token
User bilgilerini döndürür.
Request:
Response:
struct {
"success": true,
"user": map[string]interface{}{
"email": user.Email,
"phone": util.MaskPhone(user.Phone, "*"),
"darklayout": user.DarkLayout,
"ustate": user.Status,
"2fmethod": user.TwoFactorMethod,
"language": user.Language,
"defaultcurrency": user.DefaultCurrency,
"firstname": user.FirstName,
"lastname": user.LastName,
"sesstimeout": sesstimeout,
"antispamkey": user.AntiSpamKeyword,
},
}
Kullanıcının sistemde oturum açmasını sağlayar.
Geri Dönüşler;
Gönderilen JSON model sunucu tarafında validate edilmediyse; StatusUnprocessableEntity: 422
Gönderilen kullanıcı adı veritabanında bunulanamadıysa; StatusNotFound: 404
Girilen şifre veritabanındaki ile eşleşmiyorsa; StatusForbidden: 403
Kullanıcının mail validasyonu henüz yapılmadıysa; StatusUnauthorized: 401
Kullanıcı login'e kapalı ise (henüz aktif edilmemiş kullanıcı); StatusUnauthorized: 401
Kullanıcının 2FA ayarı açıksa ve doğrulanamadıysa; StatusUnauthorized: 401
Kullanıcı bilgileri ile oturum başlatma sırasında problem olduğunda StatusInternalServerError: 500
Request:
{
"email": "",
"password": "",
"recaptcha": ""
}
Response:
{
"success": true
}
Login işleminin 2. adımı olan endpoint
Request:
type TwoFactorAuthRequest struct {
Passcode string `json:"passcode" binding:"required"`
}
Response:
struct {
"success": true,
"user": map[string]interface{}{
"email": user.Email,
"phone": util.MaskPhone(user.Phone, "*"),
"darklayout": user.DarkLayout,
"ustate": user.Status,
"2fmethod": user.TwoFactorMethod,
"language": user.Language,
"defaultcurrency": user.DefaultCurrency,
"firstname": user.FirstName,
"lastname": user.LastName,
"sesstimeout": sesstimeout,
"antispamkey": user.AntiSpamKeyword,
},
}
Kullanıcıyı sisteme kaydeden endpoint.
Request:
type RegisterRequest struct {
Email string `json:"email" binding:"required,email"`
Password string `json:"password"`
Language string `json:"language"`
InvitationCode string `json:"invitecode"`
Recaptcha string `json:"recaptcha"`
}
Response:
{
"success": true
}
Kullanıcının üyelik sonrasında aktivasyon linkinden gelişini karşılayan endpoint
Request:
type ConfirmRequest struct {
Hash string `json:"hash" binding:"required"`
}
Response:
{
"success": true
}
ConfirmInvitation davetiye mailinden gelen link hash'i otomatik olarak buraya yönlendirir.
type ConfirmInvitation struct {
Hash string `json:"hash" binding:"required"`
}
Response:
{
"invitationcode": invitation.InvitationCode,
"success": true,
}
Kullanıcının kayıt aşamasında "email" uygunluğunu kontrol eden endpoint
Request:
curl http://localhost/api/v1/lg/user/checkemail?email=username@domain.com
Response:
{
"available": bool,
}
Kullanıcının kayıt aşamasında "phone" uygunluğunu kontrol eden endpoint
Request:
curl http://localhost/api/v1/lg/user/checkemail?phone=00000000000
Response:
{
"available": bool,
}
Davetiye sisteminin aktif veya pasif olduğunu bildiren endpoint.
Request:
Response:
{
"available": bool,
}
Yeniden sms gönderimi sağlayan handler.
Request:
type ResendSMSRequest struct {
Type string `json:"type" binding:"required"`
}
Response:
{
"success": true
}
Kullanıcının şifre sıfırlama isteği yaptığı endpoint
Request:
type ForgotPasswordRequest struct {
Email string `json:"email" binding:"required,email"`
Recaptcha string `json:"recaptcha" binding:"required"`
}
Response:
{
"success": true
}
Eğer şifre sıfırlama isteğini kullanıcı atmadıysa şüpheli olarak bildirdiği endpoint
Request:
type ForgotPasswordHash struct {
Hash string `json:"hash" binding:"required,max=64"`
}
Response:
{
"success": true
}
Kullanıcı mailinden onayladıktan sonra şifreyi değiştirdiği endpoint, hash ve yeni şifreyi parametre olarak alır
Request:
type ResetForgotPasswordRequest struct {
Hash string `json:"hash" binding:"required,max=64"`
Password string `json:"password" binding:"required,min=8,validpassword"`
}
Response:
{
"success": true
}
2FA güvenlik seviyesinde işlem yapabilmek için TOTP yöntemi ile "secret" oluşturan endpoint
Request:
Response:
{
"secret": secret,
"success": true,
}
Bütün davetiyeleri listeleyen endpoint
Request:
Response:
{
"success": true,
"records": []models.UserInvitation,
}
Davetiyeler ile ilgi bilgileri gösterir
Request:
Response:
{
"success": bool,
"limit": int,
"used": int,
"enabled": bool,
}
Kimlik doğrulaması için yüklenmiş olan belgeleri get eden endpoint.
Request:
Response:
{
"images": []map[string]interface{}{},
}
Kullanıcıdan gelen DarkLayout ayarını kaydeden endpoint.
Request:
type SaveSettingRequest struct {
Value string `json:"value" binding:"required"`
}
Response:
{
"success": true
}
Kullanıcının şifresini değiştiren endpoint.
Request:
type ChangePasswordRequest struct {
CurrentPassword string `json:"currentpassword" binding:"required"`
NewPassword string `json:"newpassword" binding:"required,min=8,validpassword"`
Passcode string `json:"passcode"`
}
Response:
{
"success": true
}
Kullanıcının şifre değiştirme isteğini mail ile onaylar
Request:
type ConfirmRequest struct {
Hash string `json:"hash" binding:"required"`
}
Response:
{
"success": true
}
2FA güvenlik seviyesinde işlem yapma özelliğini aktif eden endpint
Request:
type TotpRequest struct {
Password string `json:"password" binding:"required"`
Passcode string `json:"passcode" binding:"required,len=6"`
}
Response:
{
"success": true
}
2FA güvenlik seviyesi ayarını aktif etmek için aktivasyon linkinden gelişini karşılayan endpoint (Email)
Request:
type ConfirmRequest struct {
Hash string `json:"hash" binding:"required"`
}
Response:
{
"success": true
}
type SaveAntispamKeyRequest struct {
Value string `json:"value" binding:"max=12"`
}
Response:
{
"success": true
}
2fa yöntemi değiştirme işlemi için sms gönderiminin yapıldığı handler
Request:
Response:
{
"success": true
}
Kimlik doğrulaması için belge yükleme işlemini gerçekleştiren endpoint.
Request:
Response:
{
"success": true,
"imageurl": string,
}
Kimlik doğrulaması için yüklenmiş olan belgelerin tamamlandığını ve checking işlemine geçilmesini belirten endpoint.
Request:
curl -X POST http://localhost/api/v1/lg/user/verificationsave
Response:
{
"success": true
}
Kimlik doğrulaması için yüklenmiş olan bir belgeyi sistemden temizleyen endpoint.
Request:
type VerificationRemoveRequest struct {
ImageDocType string `form:"imagedoctype" binding:"required"`
}
Response:
{
"success": true
}
Diğer üyelik bilgilerinin alındığı endpoint.
Request:
type ConfirmAccountRequest struct {
FirstName string `json:"firstname" binding:"required"`
LastName string `json:"lastname" binding:"required"`
IdentityNumber string `json:"identnumber" binding:"required"`
Phone string `json:"phonenumber" binding:"required"`
BirthDate string `json:"birthdate" binding:"required"`
BirthCity uint `json:"city" binding:"required"`
BirthTown uint `json:"town" binding:"required"`
}
Response:
{
"success": true
}
Request:
type InvitationCreateRequest struct {
Email string `json:"email" binding:"required"`
}
Response:
{
"success": true
}
Request:
type InvitationCancelRequest struct {
Id uint64 `json:"id" binding:"required"`
}
Response:
{
"success": true
}
Kullanıcıların bakiye durumunu gösteren servistir
Kullanıcıların ilgili cüzdanlarındaki güncel bakiye durumunu gösterir
Request:
Response:
type Balance struct {
Assets []Asset `json:"assets"`
TotalTRY string `json:"total_try"`
TotalBTC string `json:"total_btc"`
Unit string `json:"unit"`
}
//Asset Balance'a tanımlı para birimlerini temsil eder.
type Asset struct {
Name string `json:"name"`
Qty string `json:"usable"`
QtyTotal string `json:"total"`
AsBTC string `json:"asbtc"`
}
Test amaçlı TRY ve BTC cüzdanına bakiye yüklemek için kullanılır.
Request:
Response:
{
"status": true,
}