Skip to content

Commit

Permalink
Merge pull request #40 from JeremyBellaiche/master
Browse files Browse the repository at this point in the history
Add GET request : positionSide/dual
  • Loading branch information
zhouaini528 authored Jul 25, 2022
2 parents a8b6bac + c1d66aa commit e30b90a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Api/Futures/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ public function postPositionSideDual(array $data=[]){
$this->data=array_merge($this->data,$data);
return $this->exec();
}

/**
*GET /fapi/v1/positionSide/dual (HMAC SHA256) USER_DATA
* */
public function getPositionSideDual(array $data=[]){
$this->type='GET';
$this->path='/fapi/'.$this->version.'/positionSide/dual';
$this->data=array_merge($this->data,$data);
return $this->exec();
}

/**
*GET /fapi/v1/order (HMAC SHA256) USER_DATA
Expand Down

0 comments on commit e30b90a

Please sign in to comment.