Attach Plan To Member

To Assign a Plan to a Member

To attach the created plan to the member.

POST https://api.dyntube.com/v1/member-plans

The content type of the HTTP request should be application/json. Please have a look at the sample JSON body below.

{
    "pager": {
        "page": 1,
        "size": 12,
        "hits": 12,
        "total": 1300,
        "pages": 109
    },
    "views": [
        {
            "id": "NZDSFhZ2",
            "videoKey": "NN8GgcLjTsbUg",
            "accountKey": "8t9ym1JSJuCZg",
            "projectKey": "5lCohVbzSymGw",
            "channelKey": "tEOqkbUhB6NOw",
            "channelViewId": "NggYmvRvw",
            "planType": 1,
            "viewerId": "kQdFThzl6e0",
            "viewId": "8LsRTyu2S",
            "date": "2020-08-01T12:42:14.08+00:00",
            "region": "use-s",
            "started": true,
            "ended": false,
            "muted": false,
            "duration": 150,
            "watchTime": 0,
            "browser": {
                "family": "Firefox",
                "major": 82,
                "minor": 0
            },
            "device": {
                "family": "Other",
                "brand": "",
                "model": "",
                "type": "Desktop"
            },
            "os": {
                "family": "Windows",
                "major": 10,
                "processor": "x64"
            },
            "geo": {
                "ip": "121.121.60.0",
                "city": "Kuala Lumpur",
                "country": "MY",
                "region": "Kuala Lumpur",
                "continent": "AS"
            },
            "embed": {
                "url": "https://www.dyntube.com/",
                "domain": "www.dyntube.com",
                "type": 1
            },
            "userKey": ""
        }
		
    ]
}

Sample JSON Body

Here is a sample JSON request to create a member-plan.

    {
       "memberId":"meemberId1",
       "planId":"planId1",
       "status":1 //Status 1 is active
    }

Code Samples

C#

using System;
using System.Net.Http;
using System.Text;
using Newtonsoft.Json;

//Note: You will need to add the Newtonsoft.Json package from NuGet to use the `JsonConvert.SerializeObject` method.

namespace CreateMemberPlanExample
{
    class Program
    {
        static async System.Threading.Tasks.Task Main(string[] args)
        {
            string url = "https://api.dyntube.com/v1/member-plans";

            var data = new
            {
                memberId = "memberId1",
                planId = "planId1",
                status = 1
            };

            using (var httpClient = new HttpClient())
            {
                var content = new StringContent(JsonConvert.SerializeObject(data), Encoding.UTF8, "application/json");
                var response = await httpClient.PostAsync(url, content);

                if (response.IsSuccessStatusCode)
                {
                    Console.WriteLine("Member plan created successfully.");
                }
                else
                {
                    Console.WriteLine($"Failed to create member plan. Status code: {response.StatusCode}");
                }
            }
        }
    }
}

Node.js

const axios = require('axios');

const data = {
    memberId: 'memberId1',
    planId: 'planId1',
    status: 1
};

axios.post('https://api.dyntube.com/v1/member-plans', data)
    .then((response) => {
        console.log('Member plan created successfully.');
    })
    .catch((error) => {
        console.log(`Failed to create member plan. Status code: ${error.response.status}`);
    });

Python

import requests
import json

url = "https://api.dyntube.com/v1/member-plans"

payload = {
    "memberId": "memberId1",
    "planId": "planId1",
    "status": 1
}
headers = {
    "Content-Type": "application/json",
    "Authorization": "Bearer YOUR_API_KEY"
}

response = requests.post(url, data=json.dumps(payload), headers=headers)

if response.status_code == 200:
    print("Member-plan created successfully.")
else:
    print(f"Failed to create member-plan. Status code: {response.status_code}")

PHP

$url = 'https://api.dyntube.com/v1/member-plans';

$data = array(
    "memberId" => "memberId1",
    "planId" => "planId1",
    "status" => 1
);
$data_json = json_encode($data);

$headers = array(
    'Content-Type: application/json',
    'Authorization: Bearer YOUR_API_KEY'
);

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_json);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

if ($http_code == 200) {
    echo "Member-plan created successfully.";
} else {
    echo "Failed to create member-plan. Status code: " . $http_code;
}

Last updated