FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

dmca-services/api: Documentation / Wiki of the DMCA.com REST API (usage restrictions apply) · GitHub

Latest commit

 

History

9 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

Repository files navigation

DMCA.com

See the API docs

The official documentation for DMCA services API. Use the API to

Usage Requirements

You must have an active account at https://www.dmca.com?r=ghapi

Documentation

See the API docs.

API JS Example

 function newRegistration(firstName, lastName, companyName, email, callBack) {
                var data = {
                        "FirstName": firstName,
                        "LastName": lastName,
                        "CompanyName": companyName,
                        "Email": email
                    };
                $.ajax({
                    type: "POST",
                    contentType: 'application/json; charset=utf-8',
                    url: "https://api.dmca.com/register",
                    data: JSON.stringify(data),
                    dataType: "json",
                    crossDomain: true,
                    context: this,
                    success: function (response) {
                        if (typeof callBack !== 'undefined') { callBack(response); }
                    }
                });
            }

Releases

Packages

Used by

Contributors


Back | FazBrowse Home | New Git URL