POST me/freeagents/join

use for member to join as a free agent in a divison

Request Information

Parameters

NameDescriptionAdditional information
freeagent
collect necessary and required information for check
            ex:if email is required ,then should pass the email

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "division_id": "sample string 1",
  "league_id": "sample string 2",
  "terms_accepted": true,
  "entered_email": "sample string 4",
  "sid": "sample string 5",
  "cell_phone": "sample string 6",
  "carrier_id": 7,
  "allow_sms_message": true,
  "message": "sample string 9"
}

application/xml, text/xml

Sample:
<JoinFreeAgentDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Web.API.Models.Input">
  <allow_sms_message>true</allow_sms_message>
  <carrier_id>7</carrier_id>
  <cell_phone>sample string 6</cell_phone>
  <division_id>sample string 1</division_id>
  <entered_email>sample string 4</entered_email>
  <league_id>sample string 2</league_id>
  <message>sample string 9</message>
  <sid>sample string 5</sid>
  <terms_accepted>true</terms_accepted>
</JoinFreeAgentDto>

application/x-www-form-urlencoded

Sample:

Sample not available.