Request a particular company approval to an influencer by an id
POST/api/influencer/:id/company
Request a particular company approval to an influencer by an id
Request
Path Parameters
id uuidrequired
The id of the influencer
- application/json
Body
required
company_id uuidrequired
The unique identifier of the company.
Responses
- 200
- default
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
id uuidrequired
The unique identifier of the influencer company approval request item.
influencer_id uuidrequired
The unique identifier of the influencer.
company_id uuidrequired
The unique identifier of the company.
status InfluencerCompanyApprovalStatusrequired
Possible values: [waiting_user_approval, approved, declined]
Influencer company approval status
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"influencer_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"company_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "waiting_user_approval"
}
Unexpected error
- application/json
- Schema
- Example (from schema)
Schema
code int32required
The error code
message stringrequired
A human-readable error message
{
"code": 0,
"message": "string"
}
Loading...