Add member to a channel

POST /v1/channels/{channelId}/spotMembers

Add member to a channel

Path parameters

  • channelId string Required

    The id of the channel

application/json

Body Required

  • spotMemberId string Required

    An uuid representing the unique identifier of the spot member to add to channel

Responses

  • 204

    Member successfully added

  • 400

    Malformed payload

  • 404

    Channel not found

POST /v1/channels/{channelId}/spotMembers
curl \
 --request POST 'https://openapi.meltingspot.io/v1/channels/{channelId}/spotMembers' \
 --header "Content-Type: application/json" \
 --data '{"spotMemberId":"string"}'
Request examples
{
  "spotMemberId": "string"
}