Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
C#
using RestSharp; var options = new RestClientOptions("https://api.sandbox.{id}.gr4vy.app/buyers/{buyer_id}"); var client = new RestClient(options); var request = new RestRequest(""); request.AddHeader("Authorization", "Bearer <token>"); var response = await client.DeleteAsync(request); Console.WriteLine("{0}", response.Content);
{ "type": "error", "code": "unauthorized", "status": 401, "message": "No valid API authentication found", "details": [] }
buyers.write
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The unique ID for a buyer.
"8724fd24-5489-4a5d-90fd-0604df7d3b83"
Returns an empty response.
Was this page helpful?