MCPcopy
hub / github.com/uselotus/lotus / link_token

Method link_token

backend/metering_billing/views/crm_views.py:136–144  ·  view source on GitHub ↗
(self, request, format=None)

Source from the content-addressed store, hash-verified

134 },
135 )
136 def link_token(self, request, format=None):
137 self.check_vessel_token_and_crm_integration(request)
138
139 response = requests.post(
140 "https://api.vessel.land/link/token",
141 headers={"vessel-api-token": VESSEL_API_KEY},
142 )
143 body = response.json()
144 return Response({"link_token": body["linkToken"]}, status=status.HTTP_200_OK)
145
146 @extend_schema(
147 request=inline_serializer(

Callers

nothing calls this directly

Calls 2

postMethod · 0.45

Tested by

no test coverage detected