Python
import requests url = "https://api.opper.ai/v3/functions/{name}/revisions" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
{ "revisions": [ { "created_at": "2023-11-07T05:31:56Z", "is_current": true, "revision_id": 123, "schema_hash": "<string>" } ] }
List all revisions of a function.
API key authentication. Pass your API key as a Bearer token.
Function name
Successful response
Show child attributes