Hello, i'm trying to crate new product, plan and subscription using paypal REST API. I'm using c# code in .net. Everything works find but the response is with status: 200 and it means OK but in the documentation i see that i have to receive a response with status: 201 CREATED. Also in my response there is not info about the created product. I'm not sure if i'm missing somethings because if the product is created i have to receive back product's information. This is the code i use:
- public void CreateProduct()
- {
- try
- {
- string URL = "https://api.sandbox.paypal.com/v1/catalogs/products";
- string urlParameters = "?name=testName";
-
-
- ServicePointManager.Expect100Continue = true;
- ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
-
-
- HttpClient client = new HttpClient();
- client.BaseAddress = new Uri(URL);
-
- client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", "Access-Token-Is-Here-I-Remove-It-For-Security-Purpose");
- client.DefaultRequestHeaders.Add("PayPal-Request-Id", "ERRCAT001");
- client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
-
-
- HttpResponseMessage response = client.GetAsync(urlParameters).Result;
- if (response.IsSuccessStatusCode)
- {
-
-
-
-
-
-
- }
- else
- {
- Console.WriteLine("{0} ({1})", (int)response.StatusCode, response.ReasonPhrase);
- }
-
-
-
-
- client.Dispose();
- }
- catch (Exception err)
- {
- string error = err.Message;
- }
- }