Skip to content

Latest commit

 

History

History
1574 lines (1006 loc) · 43.8 KB

File metadata and controls

1574 lines (1006 loc) · 43.8 KB

postiz_python_client.IntegrationsApi

All URIs are relative to http://localhost

Method HTTP request Description
integrations_controller_change_plug_activation PUT /integrations/plugs/{id}/activate
integrations_controller_connect_social_media POST /integrations/social/{integration}/connect
integrations_controller_delete_channel DELETE /integrations
integrations_controller_disable_channel POST /integrations/disable
integrations_controller_enable_channel POST /integrations/enable
integrations_controller_function_integration POST /integrations/function
integrations_controller_get_customers GET /integrations/customers
integrations_controller_get_integration_list GET /integrations/list
integrations_controller_get_integration_url GET /integrations/social/{integration}
integrations_controller_get_integrations GET /integrations
integrations_controller_get_internal_plugs GET /integrations/{identifier}/internal-plugs
integrations_controller_get_plug_list GET /integrations/plug/list
integrations_controller_get_plugs_by_integration_id GET /integrations/{id}/plugs
integrations_controller_get_single_integration GET /integrations/{id}
integrations_controller_get_updates GET /integrations/telegram/updates
integrations_controller_mentions POST /integrations/mentions
integrations_controller_post_plugs_by_integration_id POST /integrations/{id}/plugs
integrations_controller_save_facebook POST /integrations/facebook/{id}
integrations_controller_save_gmb POST /integrations/gmb/{id}
integrations_controller_save_instagram POST /integrations/instagram/{id}
integrations_controller_save_linkedin POST /integrations/linkedin-page/{id}
integrations_controller_set_nickname POST /integrations/{id}/nickname
integrations_controller_set_time POST /integrations/{id}/time
integrations_controller_update_integration_group PUT /integrations/{id}/group
integrations_controller_update_on_customer_name PUT /integrations/{id}/customer-name
integrations_controller_update_provider_settings POST /integrations/{id}/settings

integrations_controller_change_plug_activation

integrations_controller_change_plug_activation(id)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 

    try:
        api_instance.integrations_controller_change_plug_activation(id)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_change_plug_activation: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_connect_social_media

integrations_controller_connect_social_media(integration, body)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    integration = 'integration_example' # str | 
    body = None # object | 

    try:
        api_instance.integrations_controller_connect_social_media(integration, body)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_connect_social_media: %s\n" % e)

Parameters

Name Type Description Notes
integration str
body object

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_delete_channel

integrations_controller_delete_channel()

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)

    try:
        api_instance.integrations_controller_delete_channel()
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_delete_channel: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_disable_channel

integrations_controller_disable_channel()

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)

    try:
        api_instance.integrations_controller_disable_channel()
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_disable_channel: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_enable_channel

integrations_controller_enable_channel()

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)

    try:
        api_instance.integrations_controller_enable_channel()
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_enable_channel: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_function_integration

integrations_controller_function_integration(body)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    body = None # object | 

    try:
        api_instance.integrations_controller_function_integration(body)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_function_integration: %s\n" % e)

Parameters

Name Type Description Notes
body object

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_get_customers

integrations_controller_get_customers()

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)

    try:
        api_instance.integrations_controller_get_customers()
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_get_customers: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_get_integration_list

integrations_controller_get_integration_list()

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)

    try:
        api_instance.integrations_controller_get_integration_list()
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_get_integration_list: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_get_integration_url

integrations_controller_get_integration_url(integration, refresh, external_url)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    integration = 'integration_example' # str | 
    refresh = 'refresh_example' # str | 
    external_url = 'external_url_example' # str | 

    try:
        api_instance.integrations_controller_get_integration_url(integration, refresh, external_url)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_get_integration_url: %s\n" % e)

Parameters

Name Type Description Notes
integration str
refresh str
external_url str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_get_integrations

integrations_controller_get_integrations()

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)

    try:
        api_instance.integrations_controller_get_integrations()
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_get_integrations: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_get_internal_plugs

integrations_controller_get_internal_plugs(identifier)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    identifier = 'identifier_example' # str | 

    try:
        api_instance.integrations_controller_get_internal_plugs(identifier)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_get_internal_plugs: %s\n" % e)

Parameters

Name Type Description Notes
identifier str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_get_plug_list

integrations_controller_get_plug_list()

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)

    try:
        api_instance.integrations_controller_get_plug_list()
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_get_plug_list: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_get_plugs_by_integration_id

integrations_controller_get_plugs_by_integration_id(id)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 

    try:
        api_instance.integrations_controller_get_plugs_by_integration_id(id)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_get_plugs_by_integration_id: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_get_single_integration

integrations_controller_get_single_integration(id, order)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 
    order = 'order_example' # str | 

    try:
        api_instance.integrations_controller_get_single_integration(id, order)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_get_single_integration: %s\n" % e)

Parameters

Name Type Description Notes
id str
order str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_get_updates

integrations_controller_get_updates()

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)

    try:
        api_instance.integrations_controller_get_updates()
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_get_updates: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_mentions

integrations_controller_mentions(body)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    body = None # object | 

    try:
        api_instance.integrations_controller_mentions(body)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_mentions: %s\n" % e)

Parameters

Name Type Description Notes
body object

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_post_plugs_by_integration_id

integrations_controller_post_plugs_by_integration_id(id, body)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 
    body = None # object | 

    try:
        api_instance.integrations_controller_post_plugs_by_integration_id(id, body)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_post_plugs_by_integration_id: %s\n" % e)

Parameters

Name Type Description Notes
id str
body object

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_save_facebook

integrations_controller_save_facebook(id)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 

    try:
        api_instance.integrations_controller_save_facebook(id)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_save_facebook: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_save_gmb

integrations_controller_save_gmb(id)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 

    try:
        api_instance.integrations_controller_save_gmb(id)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_save_gmb: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_save_instagram

integrations_controller_save_instagram(id)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 

    try:
        api_instance.integrations_controller_save_instagram(id)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_save_instagram: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_save_linkedin

integrations_controller_save_linkedin(id)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 

    try:
        api_instance.integrations_controller_save_linkedin(id)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_save_linkedin: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_set_nickname

integrations_controller_set_nickname(id)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 

    try:
        api_instance.integrations_controller_set_nickname(id)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_set_nickname: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_set_time

integrations_controller_set_time(id, body)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 
    body = None # object | 

    try:
        api_instance.integrations_controller_set_time(id, body)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_set_time: %s\n" % e)

Parameters

Name Type Description Notes
id str
body object

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_update_integration_group

integrations_controller_update_integration_group(id)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 

    try:
        api_instance.integrations_controller_update_integration_group(id)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_update_integration_group: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_update_on_customer_name

integrations_controller_update_on_customer_name(id)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 

    try:
        api_instance.integrations_controller_update_on_customer_name(id)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_update_on_customer_name: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

integrations_controller_update_provider_settings

integrations_controller_update_provider_settings(id)

Example

import postiz_python_client
from postiz_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = postiz_python_client.Configuration(
    host = "http://localhost"
)


# Enter a context with an instance of the API client
with postiz_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = postiz_python_client.IntegrationsApi(api_client)
    id = 'id_example' # str | 

    try:
        api_instance.integrations_controller_update_provider_settings(id)
    except Exception as e:
        print("Exception when calling IntegrationsApi->integrations_controller_update_provider_settings: %s\n" % e)

Parameters

Name Type Description Notes
id str

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
201 -

[Back to top] [Back to API list] [Back to Model list] [Back to README]