All URIs are relative to https://groovy.audioshake.ai
| Method | HTTP request | Description |
|---|---|---|
| job_id_get | GET /job/{id} | Get a job given an Id. |
| job_post | POST /job/ | Create a new job. |
InlineResponse2XX job_id_get(id)
Get a job given an Id.
from __future__ import print_function
import time
import audioshake
from audioshake.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = audioshake.JobApi(audioshake.ApiClient(configuration))
id = 'id_example' # str |
try:
# Get a job given an Id.
api_response = api_instance.job_id_get(id)
pprint(api_response)
except ApiException as e:
print("Exception when calling JobApi->job_id_get: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| id | str |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InlineResponse2XX job_post(body=body)
Create a new job.
from __future__ import print_function
import time
import audioshake
from audioshake.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = audioshake.JobApi(audioshake.ApiClient(configuration))
body = audioshake.JobBody() # JobBody | (optional)
try:
# Create a new job.
api_response = api_instance.job_post(body=body)
pprint(api_response)
except ApiException as e:
print("Exception when calling JobApi->job_post: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| body | JobBody | [optional] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]