Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 1.11 KB

File metadata and controls

38 lines (24 loc) · 1.11 KB

AttachmentsService

A list of all methods in the AttachmentsService service. Click on the method name to view detailed information about that method.

Methods Description
create_v1_attachments Upload files for Devin to work with.

create_v1_attachments

Upload files for Devin to work with.

  • HTTP Method: POST
  • Endpoint: /v1/attachments

Parameters

Name Type Required Description
request_body CreateV1AttachmentsRequest The request body.

Return Type

str

Example Usage Code Snippet

from devin import Devin

sdk = Devin(
    access_token="YOUR_ACCESS_TOKEN"
)

result = sdk.attachments.create_v1_attachments()

print(result)