Skip to content

drafts

Drafts

Bases: ListableApiResource, FindableApiResource, CreatableApiResource, UpdatableApiResource, DestroyableApiResource

Source code in nylas/resources/drafts.py
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
class Drafts(
    ListableApiResource,
    FindableApiResource,
    CreatableApiResource,
    UpdatableApiResource,
    DestroyableApiResource,
):
    def list(
        self, identifier: str, query_params: Optional[ListDraftsQueryParams] = None
    ) -> ListResponse[Draft]:
        """
        Return all Drafts.

        Args:
            identifier: The identifier of the grant to get drafts for.
            query_params: The query parameters to filter drafts by.

        Returns:
            A list of Drafts.
        """
        return super(Drafts, self).list(
            path=f"/v3/grants/{identifier}/drafts",
            response_type=Draft,
            query_params=query_params,
        )

    def find(
        self,
        identifier: str,
        draft_id: str,
    ) -> Response[Draft]:
        """
        Return a Draft.

        Args:
            identifier: The identifier of the grant to get the draft for.
            draft_id: The identifier of the draft to get.

        Returns:
            The requested Draft.
        """
        return super(Drafts, self).find(
            path=f"/v3/grants/{identifier}/drafts/{draft_id}",
            response_type=Draft,
        )

    def create(
        self, identifier: str, request_body: CreateDraftRequest
    ) -> Response[Draft]:
        """
        Create a Draft.

        Args:
            identifier: The identifier of the grant to send the message for.
            request_body: The request body to create a draft with.

        Returns:
            The newly created Draft.
        """
        json_response = self._http_client._execute(
            method="POST",
            path=f"/v3/grants/{identifier}/drafts",
            data=_build_form_request(request_body),
        )

        return Response.from_dict(json_response, Draft)

    def update(
        self,
        identifier: str,
        draft_id: str,
        request_body: UpdateDraftRequest,
    ) -> Response[Draft]:
        """
        Update a Draft.

        Args:
            identifier: The identifier of the grant to update the draft for.
            draft_id: The identifier of the draft to update.
            request_body: The request body to update the draft with.

        Returns:
            The updated Draft.
        """
        json_response = self._http_client._execute(
            method="PUT",
            path=f"/v3/grants/{identifier}/drafts/{draft_id}",
            data=_build_form_request(request_body),
        )

        return Response.from_dict(json_response, Draft)

    def destroy(self, identifier: str, draft_id: str) -> DeleteResponse:
        """
        Delete a Draft.

        Args:
            identifier: The identifier of the grant to delete the draft for.
            draft_id: The identifier of the draft to delete.

        Returns:
            The deletion response.
        """
        return super(Drafts, self).destroy(
            path=f"/v3/grants/{identifier}/drafts/{draft_id}",
        )

create(identifier, request_body)

Create a Draft.

Parameters:

Name Type Description Default
identifier str

The identifier of the grant to send the message for.

required
request_body CreateDraftRequest

The request body to create a draft with.

required

Returns:

Type Description
Response[Draft]

The newly created Draft.

Source code in nylas/resources/drafts.py
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
def create(
    self, identifier: str, request_body: CreateDraftRequest
) -> Response[Draft]:
    """
    Create a Draft.

    Args:
        identifier: The identifier of the grant to send the message for.
        request_body: The request body to create a draft with.

    Returns:
        The newly created Draft.
    """
    json_response = self._http_client._execute(
        method="POST",
        path=f"/v3/grants/{identifier}/drafts",
        data=_build_form_request(request_body),
    )

    return Response.from_dict(json_response, Draft)

destroy(identifier, draft_id)

Delete a Draft.

Parameters:

Name Type Description Default
identifier str

The identifier of the grant to delete the draft for.

required
draft_id str

The identifier of the draft to delete.

required

Returns:

Type Description
DeleteResponse

The deletion response.

Source code in nylas/resources/drafts.py
112
113
114
115
116
117
118
119
120
121
122
123
124
125
def destroy(self, identifier: str, draft_id: str) -> DeleteResponse:
    """
    Delete a Draft.

    Args:
        identifier: The identifier of the grant to delete the draft for.
        draft_id: The identifier of the draft to delete.

    Returns:
        The deletion response.
    """
    return super(Drafts, self).destroy(
        path=f"/v3/grants/{identifier}/drafts/{draft_id}",
    )

find(identifier, draft_id)

Return a Draft.

Parameters:

Name Type Description Default
identifier str

The identifier of the grant to get the draft for.

required
draft_id str

The identifier of the draft to get.

required

Returns:

Type Description
Response[Draft]

The requested Draft.

Source code in nylas/resources/drafts.py
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
def find(
    self,
    identifier: str,
    draft_id: str,
) -> Response[Draft]:
    """
    Return a Draft.

    Args:
        identifier: The identifier of the grant to get the draft for.
        draft_id: The identifier of the draft to get.

    Returns:
        The requested Draft.
    """
    return super(Drafts, self).find(
        path=f"/v3/grants/{identifier}/drafts/{draft_id}",
        response_type=Draft,
    )

list(identifier, query_params=None)

Return all Drafts.

Parameters:

Name Type Description Default
identifier str

The identifier of the grant to get drafts for.

required
query_params Optional[ListDraftsQueryParams]

The query parameters to filter drafts by.

None

Returns:

Type Description
ListResponse[Draft]

A list of Drafts.

Source code in nylas/resources/drafts.py
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
def list(
    self, identifier: str, query_params: Optional[ListDraftsQueryParams] = None
) -> ListResponse[Draft]:
    """
    Return all Drafts.

    Args:
        identifier: The identifier of the grant to get drafts for.
        query_params: The query parameters to filter drafts by.

    Returns:
        A list of Drafts.
    """
    return super(Drafts, self).list(
        path=f"/v3/grants/{identifier}/drafts",
        response_type=Draft,
        query_params=query_params,
    )

update(identifier, draft_id, request_body)

Update a Draft.

Parameters:

Name Type Description Default
identifier str

The identifier of the grant to update the draft for.

required
draft_id str

The identifier of the draft to update.

required
request_body UpdateDraftRequest

The request body to update the draft with.

required

Returns:

Type Description
Response[Draft]

The updated Draft.

Source code in nylas/resources/drafts.py
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
def update(
    self,
    identifier: str,
    draft_id: str,
    request_body: UpdateDraftRequest,
) -> Response[Draft]:
    """
    Update a Draft.

    Args:
        identifier: The identifier of the grant to update the draft for.
        draft_id: The identifier of the draft to update.
        request_body: The request body to update the draft with.

    Returns:
        The updated Draft.
    """
    json_response = self._http_client._execute(
        method="PUT",
        path=f"/v3/grants/{identifier}/drafts/{draft_id}",
        data=_build_form_request(request_body),
    )

    return Response.from_dict(json_response, Draft)