Difference between revisions of "Linden Lab Official:Custom Name Program"

From Second Life Wiki
Jump to navigation Jump to search
Line 44: Line 44:
   asort($last_names);
   asort($last_names);


== Custom vanity names ==
[[Category:Reg API]]
''Vanity names'' are available at Linden Lab's discretion, generally for events that involve major press or TV coverage, or provide significant publicity value, such as nationwide TV coverage.  Upon creation of an approved vanity name, the designated owner will be billed a US$50 setup fee plus the first annual US$50 fee. On each anniversary date, the owner will be billed US$50 to retain vanity name account ownership.
 
* Vanity name requests must reflect real life names. Please no requests for "Santa Claus," "President Lincoln," or the like.
* In some cases, a vanity name may already exist and we will not be able to create it for you.
* Approved non-profit and educational requests will receive a 30% discount on these fees.
 
=== Request procedure ===
Complete the requested information and email to '''sldevnames@lindenlab.com'''.
* Requested vanity name
* RL name of vanity name owner
* SL name of vanity name owner
* Email of requestor
* Contact information pertaining to copyright or trademark
* Event or reason for name (size of event, accompanying publicity/audience)
 
[[Category:RegAPI]]
[[Category:Web Service APIs]]
[[Category:Web Service APIs]]

Revision as of 09:30, 9 May 2011

NOTE: This is an official Second Life API provided and documented by Linden Lab. Its use is subject to the API Terms of Use.

The custom name program is in beta release. This program is still being developed, as such, requests for immediate delivery may not be met. Please review the following information to see if you qualify.


General information

This program is not an avenue for changing your current SL name.

Without the ability to verify copyright or trademark permission, any custom name request that appears to be possible infringement of such, will not be approved. Valid corporate and organizational requests will be approved.

  • Custom name requests may not be ordered on behalf of, or billed to, a second party. First party requests only please.
  • Please note that it may take up to 4 weeks to fulfill a custom name request, although we are usually able to do this within 2 weeks. You will be notified if the name is approved, and again when it is created and your account billed.
  • Please make sure that the Second Life account you intend to own the custom name has complete billing information or enough funds so that your account does not become delinquent when the custom name is billed.
  • Names must have at least two (2) characters; there is no real maximum. Only alphanumeric characters are allowed; no punctuation or special characters. Names are case-sensitive, so carefully review upper/lower case!
  • Linden Lab cannot transfer content to new accounts.
  • All requests are processed in the order of their arrival.
  • We regret that we cannot provide you with status information about your request.

Custom surnames

Upon creation of a custom surname, the account designated as owner, will be billed a US$500 setup fee plus the first annual US$500 fee. On each anniversary date, the owner will be billed US$500 to retain custom surname ownership. Last names must clearly be an organizational or corporate name, and distinguished from personal last names (surnames). For example, "Smith" is not acceptable, but "SmithCorp," "SmithInc," "SmithProducts" or "SmithConstruction" are. Linden Lab will consider names that are clearly made up or composite (for example, "SecondLife" or "Agilent").

  • To create additional accounts, the custom surname owner must apply for and use the Registration API. You may create as many additional accounts as you need (the initial limit is 500 per day, but you may request a higher limit).
  • At this time we do not provide bulk account registration for your custom surname. You must use the Reg API.
  • Review the Registration API documentation before you submit a custom surname request to be sure that you have the capabilities to create additional accounts.
  • The custom surname owner to be billed must be the same account to apply for the Reg API.
  • Approved non-profit and educational requests will receive a 30% discount on these fees.

Request procedure

Please complete the requested information and email to sldevnames@lindenlab.com.

  1. Requested Surname:
  2. RL name of Surname owner:
  3. SL name of Surname owner/RegAPI applicant:
  4. Email of requestor:
  5. Contact information pertaining to copyright or trademark:

Suggestions

  • Verify that you can use the Reg API to create accounts. The problem may be your capabilities URL or your Reg API script.
  • If you're using a Reg API account to create accounts using a custom name and can't see the Custom Last Name in the names list, you're probably not using the account that was the billing account for the Custom Last Name. You will need to request a new Reg API account with the same account as was the billing account for the Custom Last Name.
  • If you want to only display your custom name, you'll have to write code to parse the name list we return or to force your custom name as the last name choice for the registrant.
  • URI_GET_LAST_NAMES returns an associative array where the keys are the ids and the values are the last names. The PHP asort function sorts based on the values:
 $last_names = llsd_get(URI_GET_LAST_NAMES);
 asort($last_names);