跳转到主要内容
POST
/
api
/
creator
/
v1
/
partnerships
Apply to a brand partnership
curl --request POST \
  --url https://app.openlight.tech/api/creator/v1/partnerships \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "brand_id": "brd_01HY..."
}
'
{
  "partnership": {
    "id": "<string>",
    "brand_id": "<string>",
    "creator_user_id": "<string>",
    "status": "pending",
    "applied_at": "2023-11-07T05:31:56Z",
    "brand_name": "<string>",
    "creator_display_name": "<string>",
    "reviewed_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.openlight.tech/llms.txt

Use this file to discover all available pages before exploring further.

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

请求体

application/json
brand_id
string
必填
示例:

"brd_01HY..."

响应

Partnership application created

partnership
object
必填