We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am able to use all other API functions other than placing a new order.
I am passing parameters as following: /orders?product_id=BTC-USD&size=1&price=1&side=buy and every time i get error "Missing product_id"
Any help??
Following is my code (for placing a hard-coded test order)
public async Task<ApiResponse<Object>> PlaceOrder() { var response = await this.GetResponseAsync<Object>( new ApiRequest(HttpMethod.Post, $"/orders?product_id=BTC-USD&size=1&price=1&side=buy&","") ); return response; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am able to use all other API functions other than placing a new order.
I am passing parameters as following:
/orders?product_id=BTC-USD&size=1&price=1&side=buy
and every time i get error "Missing product_id"
Any help??
Following is my code (for placing a hard-coded test order)
The text was updated successfully, but these errors were encountered: