Forum Discussion

anoop1's avatar
anoop1
Icon for Nimbostratus rankNimbostratus
Feb 07, 2017

BIGIQ v5.1 rest API guide

Hi,

 

Can someone provide the BIGIQ v5.1 rest API guide or the link to download the same.

 

Also is the rest-proxy feature exist in V5.1 ? Because i am trying to use the API call of v4.5 to get the the response from v5.1 it is not working.

 

API call

 

 

it is replying with 404 error.

 

Please help me with above queries it is little bit urgent.

 

2 Replies

  • Matt_Davey_1844's avatar
    Matt_Davey_1844
    Historic F5 Account

    I believe starting at v5.0, the rest-proxy is disabled by default. You can enable it for a BIG-IP by updating the properties to include:

    "isRestProxyEnabled": true
    

    For example:

    GET https://x.x.x.x/mgmt/shared/resolver/device-groups/cm-bigip-allDevices/devices/81cc8785-f42f-4305-b4be-bfe11effdbef/
    {
      "uuid": "319967de-3d02-42f6-ab0b-ea90870fd648",
      "state": "ACTIVE",
      "product": "BIG-IP",
      "properties": {
        "shared:resolver:device-groups:discoverer": "31adc242-b23d-4d24-a111-0d18f1f50136"
      },
      ...
    

    Send a PATCH to add

    isRestProxyEnabled
    to
    properties
    , then your rest-proxy request should work.

    • anoop1's avatar
      anoop1
      Icon for Nimbostratus rankNimbostratus

      Thanks Buddy , this helped a lot