Discussions

Ask a Question
ANSWERED

API Parameter forwarding

Dear Support, May I know how to do Parameter forwarding from long link to shortened link for API? e.g. want to keep "abc" and "xyz" dynamic in link http://example.com?param1="abc"&param2="xyz" Thanks.
ANSWERED

Number of links exceeded

name: "links" used: 502 message: "Number of links exceeded" May i know what is the issue?
ANSWERED

Uncaught Error: Class 'http\Client' not found

I test the php code here https://developers.rebrandly.com/docs/api-custom-url-shortener but I'm getting error Uncaught Error: Class 'http\Client' not found
ANSWERED

Clicks track using Api

How do i get the clicks track through rebranly's Api? Clicks by Platform, by Browser, by country
ANSWERED

can we get individual link click data?

Want to know if there is a way to individual link click data like IP address, browser details, etc.
ANSWERED

Extra links information - API

Hello, Im developing a simple dashboard for manage links and i need few information that i dont find this information in API Documentation like: Top Source, Top Devices, Top Browsers, Top Platforms and Top Languages Could you help me? Thanks Best Regards Rafael Hilgemberg
ANSWERED

SSL Certificate not active yet.

Hello, I have configured a new domain (xn--kz1-bl7e409v.jp) two days ago. In Admin Dashboard I see that domain active and ready to be used, but still SSL Certificate not active yet. Could you please help me with this? I need this feature as soon as possible. Regards, Stas
ANSWERED

API For Custom Short URL

Dear Team, I am using python code which is given in API for custom short URL. This code is working for every static URL but not my dynamic URL which have some parameters, I need this for my UPI integration. for example, when I am using that code for below URL it is working and giving me a short URL: https://www.google.com/ -working. But when I am using my UPI URL: "upi://pay?pa=" + pa + "&pn=" + pn + "&tr=" + tid + "&am=" + amount + "&cu=" + currency + "&url=https://hook.integromat.com/xyz, it is giving invalid url. please provide me with the solution for the same. Thanks & Regards Vishakha Mishra
ANSWERED

Can I use https?

The examples all show http along with my domain. Can this be https?
ANSWERED

Getting pagination for links

Hi Support, I am currently working on google sheet integration and need to list all existing short URL. I am trying to do this using the API and Google Scripts, but I am unable to get the pagination working. I've tried adding the "last" value as described on the page (https://developers.rebrandly.com/docs/understanding-pagination), but it isn't working. The code I am executing is: var headers = { apikey: "xxxxxx", workspace: "xxxxxx" } var params = { headers: headers, contentType: "application/json", method: 'get', muteHttpExceptions: false, } var response = UrlFetchApp.fetch("https://api.rebrandly.com/v1/links", params); How do i need to modify this to get the pagination working?