themeSlideSet method

Future<bool> themeSlideSet(
  1. String id,
  2. Map postBody, {
  3. String? themeSlide,
})
inherited

themeSlideSet -> /v1/theme/{id}/slides/{theme_slide}

Sets the details of the specified theme slide within the specified theme. The UUID and index in the request body are ignored, and are not changed by this request.

PARAMETERS

id (required) : The ID of the theme, either name or index.

  • Example (by_name): Theme Name

  • Example (by_index): 3 themeSlide (optional) : The ID of the theme slide, either name, index or UUID.

  • Example (by_name): Theme Slide Name

  • Example (by_index): 3

  • Example (by_uuid): 3C39C433-5C18-4F51-B357-55BB870227C4

postBody (optional) : This is the data that can be sent with this request.

RESPONSE 204:

The request was processed successfully. There is no response body.

content-type: NONE

RESPONSE 400:

The request was not valid.

content-type: ``

Implementation

Future<bool> themeSlideSet(String id, Map postBody, {String? themeSlide}) async {
  String url = '/v1/theme/$id/slides/$themeSlide';

  return await call('put', url, httpAccept: 'application/json');
}