Home
Find the answer to your question
How can I retrieve the SkypeID for an eBay User?
Summary
An eBay User's SkypeID can be retrieved via the GetUser call and the GetItem call, under certain conditions.
GetUser
<?xml version="1.0" encoding="utf-8"?>
<GetUserResponse xmlns="urn:ebay:apis:eBLBaseComponents">
...
<User>
...
<SkypeID> string </SkypeID>
...
</User>
</GetUserResponse>
GetItem and GetSellerList
<?xml version="1.0" encoding="utf-8"?>
<GetItemResponse xmlns="urn:ebay:apis:eBLBaseComponents">
...
<Item>
...
<SkypeContactOption> SkypeContactOptionCodeType </SkypeContactOption>
<SkypeEnabled> boolean </SkypeEnabled>
<SkypeID> string </SkypeID>
...
</Item>
</GetItemResponse>
Additional Resources: