How to call the Edge Admin API from within a Java client, to create an api product?

I am using Apigee Edge.

I want to create an API PRODUCT using a Java or Scala client.

I don’t see a jar file provided by Apigee.

Is there any way to achieve my objective using ‘Apigee API’?

Any help or hint will be appreciated.

1 Like

Hope this should help you..

http://apigee.com/docs/management/apis/post/organizations/%7Borg_name%7D/apiproducts

1 Like

Hi @Rakesh Jain. There are Management API call available for creating API products. You can find it here. You can make these call from your java code and make API products.

1 Like

Hi @Sonali, Thanks But this is using cURL…, I mean is there any restfull api to use in java..?

@Rakesh Jain , Please search in stackoverflow / google how to make http call from Java. It should be simple & straight forward. For example , Please find post here that talks about making post call in java.

@Rakesh Jain Yes but in java also you can make this call using libraries like HttpURLConnection etc.