push
- Home
- Attachments
- push
push
Upload and associate a piece of content (photo, video, or document) to another piece of content that already exists on the platform.
Parameters
Name | Description |
user_id required | The user that’s performing the action. |
owner_xid required | The cross reference id that the uploaded content is attached to. (ie: statusId, post_id, message_id, etc.) |
owner_type required | The cross reference content type that the uploaded content is attached to. (ie: blog_post, photo, video, photo_gallery, user_profile, group, forum_post, forum_thread, forum, message, site, audio, audio_gallery, podcast, petition, document, article, article_version, calendar_event, calendar, wiki_page, ugc_status, ext_content, discussion_post) |
type required | The type of content that’s being uploaded. (ie: photo, video, document) |
name required | The user facing name of the downloadable item – including the file extension. |
site_id required | The site id that the attachment is associated with. Almost always should be the same value that the owning piece of content has. |
Request Syntax
curl -i -X POST ‘https://services.onesite.com/1/attachment/push.json?devkey=[devkey]&owner_type=blog_post&owner_xid=117118139&user_id=229928503&type=photo&name=Cars-Are-Cool.jpeg&site_id=234714047’ -F “file=@/home/developer/development/work/onesite/ugc-samples/cars/cars.usnews.com.jpeg” |
JSON Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
{ "code": 100, "message": "The attachment was added successfully.", "content": { "attachment": { "AttachmentID": 49897, "Title": "Cars-Are-Cool.jpeg", "Status": "active", "SiteID": 234714047, "NodeID": 188234, "CreatedBy": 229928503, "OwnerXid": 117118139, "OwnerType": "blog_post", "UploadXid": 161051563, "UploadType": "photo", "DateModified": "2022-04-22 10-26-08", "UploadObject": { "photo_id": "161051563", "gallery_id": "1", "caption": "Gallery Photo", "created_by": "229928503", "date_created": "2022-04-22 10:26:08", "num_views": "0", "width": "600", "height": "393", "thumb_width": "180", "thumb_height": "118", "thumb_url": "http://images.onesite.com/onesitedemo.com/user/onedemo/thumb/e7b7aa4016d073ea89605201031c7515.jpeg?v=235800", "photo_url": "http://images.onesite.com/onesitedemo.com/user/onedemo/e7b7aa4016d073ea89605201031c7515.jpeg?v=235800", "photo_link": "http://www.onesitedemo.com/onedemo/go/gallery/item/161051563", "contentID": "1832499387", "type": "photo", "rating": 0, "prev_photo_id": null, "next_photo_id": "160548317" } } } } |