Skip to main content
PUT
/
subscriptions
/
{id}
/
refresh
Refresh a subscription
import requests

url = "https://{FUSION HOST}/api/subscriptions/{id}/refresh"

headers = {"Authorization": "Basic <encoded-value>"}

response = requests.put(url, headers=headers)

print(response.json())
"<string>"

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The subscription ID

Query Parameters

action
string
default:start

The action to apply when refreshing the subscription. This is currently either start or stop.

Response

200 - application/json

OK

The response is of type string.