Source

This page was generated with Wiki Builder. Do not change the format!

Info

Returns a list of players by username and platform.

Parameters

Path Parameters

Name Schema Required Description
membershipType BungieMembershipType:Enum Yes The type of account for which info will be extracted.
displayName string Yes A valid display name to search for.

Query String Parameters

None

Example

Request

GET https://bungie.net/d1/Platform/Destiny/SearchDestinyPlayer/{membershipType}/{displayName}/

Response

PlatformErrorCode: 200

{
    // Type: SearchDestinyPlayer
    "Response": [
       // Type: UserInfoCard
        {
            // Type: string
            "supplementalDisplayName": "",
            // Type: string
            "iconPath": "",
            // Type: BungieMembershipType:Enum
            "membershipType": {},
            // Type: integer:int64
            "membershipId": 0,
            // Type: string
            "displayName": ""
        }
    ],
    // Type: PlatformErrorCodes:Enum
    "ErrorCode": 0,
    // Type: integer:int32
    "ThrottleSeconds": 0,
    // Type: string
    "ErrorStatus": "",
    // Type: string
    "Message": "",
    // Type: Dictionary<string,string>
    "MessageData": {
        "{string}": ""
    },
    // Type: object
}

References