WsVimeoPublish
	        	Returns vimeo publications for the account
		            URL Format
	            /ws/WsVimeoPublish/api/{app_token}/mode/json/apiv/5??assetId={assetId}&referenceId={refrenceId}&uuid={assetUUID}
	    Parameters
	
        
            
            | Name | Req | Type | Description | 
        
        
			
                | app_token |  | string | The api token for the given account. You can find the api token when navigating through account->api accounts | 
			
                | apiv |  | integer | The api version; only version 5 supported. | 
			
                | assetId |  | int | assetId of the asset to retrieve YT publications for | 
			
                | refernceId |  | string | referenceId of the asset to retrieve YT publications for, note: if assetId is present, referenceId param is ignored | 
			
                | uuid |  | string | asset Uuid | 
        
	
    Request Headers
    
    Possible Responses
    
- 1230 Vimeo publications found
- 1231 No Vimeo publications found
- 1232 Vimeo publication added/updated
- 102 Invalid app token
- 303 Invalid Asset ID
- 102 Invalid app token.
- 20 Unexpected Error has Occured
Example Response
	            {
  "response": {
    "success": {
      "code": 1230,
      "message": "Vimeo publications found",
      "details": ""
    },
    "WsVimeoPublishResponse": {
      "VimeoPublish": [
        {
          "id": 1,
          "assetId": 1,
          "vimeoAccountId": 2,
          "vimeoVideoId": "asdasdasd",
          "dateAdded": "2000-05-01T00:00:00Z",
          "dateProcessed": "2000-05-01T00:00:00Z",
          "status": "complete",
          "statusMessage": "Successfully uploaded to Vimeo",
          "attempts": 1
        }
      ]
    }
  }
}