clickup_dart_sdk 0.4.0 copy "clickup_dart_sdk: ^0.4.0" to clipboard
clickup_dart_sdk: ^0.4.0 copied to clipboard

A SDK for ClickUp for integrating or creating applications on top of the product.

example/clickup_dart_sdk_example.dart

import 'package:clickup_dart_sdk/clickup_dart_sdk.dart';

void main() async {
  final token = "pk_testrandomtoken123";
  // Initialize with mock server for testing
  final clickUp = ClickUp(
      apiEndpoint: "https://a00fb6e0-339c-4201-972f-503b9932d17a.remockly.com")
    ..initialize(authToken: token);

  final attachment = await clickUp.attachments.createTaskAttachment(
      taskID: "8669e046h",
      useCustomTaskID: false,
      filePath: "./test/beksinski_sample.jpg");
  print(attachment);
  final listComments = await clickUp.comments.getListComments(listID: 1);
  print(listComments);
}
0
likes
140
points
63
downloads

Publisher

verified publisherayazemre.com

Weekly Downloads

A SDK for ClickUp for integrating or creating applications on top of the product.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

http, path

More

Packages that depend on clickup_dart_sdk