Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
GitHub token to verify if the user owns the repo of the node
Response
Node claimed successfully
curl --request POST \
--url https://api.comfy.org/publishers/{publisherId}/nodes/{nodeId}/claim-my-node \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"GH_TOKEN": "<string>"
}'This response does not have an example.This endpoint allows a publisher to claim an unclaimed node that they own the repo, which is identified by the nodeId. The unclaimed node’s repository must be owned by the authenticated user.
curl --request POST \
--url https://api.comfy.org/publishers/{publisherId}/nodes/{nodeId}/claim-my-node \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"GH_TOKEN": "<string>"
}'This response does not have an example.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
GitHub token to verify if the user owns the repo of the node
Node claimed successfully
Was this page helpful?