Skip to main content
POST
/
public
/
dmca-requests
/
save
Public Save DMCA Request
curl --request POST \
  --url https://api.example.com/public/dmca-requests/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "languageID": 1,
  "dmcaRequestStatusTypeID": 123,
  "fullName": "<string>",
  "companyName": "<string>",
  "addressLine1": "<string>",
  "addressLine2": "<string>",
  "city": "<string>",
  "stateProvince": "<string>",
  "postalCode": "<string>",
  "countryID": 123,
  "phone": "<string>",
  "email": "<string>",
  "copyrightedWorkDescription": "<string>",
  "infringingURLs": "<string>",
  "originalWorkEvidenceURL": "<string>",
  "goodFaithStatement": true,
  "accuracyAndAuthorityStatement": true,
  "signature": "<string>",
  "submitterIP": "<string>",
  "userAgent": "<string>",
  "publicSessionToken": "<string>"
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
languageID
integer<int32>
default:1
required
dmcaRequestStatusTypeID
integer<int32>
fullName
string | null
companyName
string | null
addressLine1
string | null
addressLine2
string | null
city
string | null
stateProvince
string | null
postalCode
string | null
countryID
integer<int32> | null
phone
string | null
email
string | null
copyrightedWorkDescription
string | null
infringingURLs
string | null
originalWorkEvidenceURL
string | null
goodFaithStatement
boolean
accuracyAndAuthorityStatement
boolean
signature
string | null
submitterIP
string | null
userAgent
string | null
publicSessionToken
string | null

Response

Success

success
boolean
data
unknown