We noticed since we started using v3 of funding instrument API. We start seeing the attribute “paused” has null value where we get false value using v2. The documentation link below mentioned that “paused” attribute has 2 possible values (true and false). Is this a bug which is to be fixed ? Below we put an example responses (v2 and v3) we get against the same account id (18ce54jukpw).
https://developer.twitter.com/en/docs/ads/campaign-management/api-reference/funding-instruments
Twitter API V2
[
{
…
“AccountId”: “18ce54jukpw”,
“Currency”: “USD”,
“type”: “PARTNER_MANAGED”,
“ReasonsNotAbleToFund”: [],
“created_at”: “2017-08-16T11:07:41Z”,
“start_time”: “2017-08-16T11:07:41Z”,
“end_time”: null,
“deleted”: false,
"paused": false,
“able_to_fund”: true,
“Id”: “p3moq”,
…
“updated_at”: “2018-04-06T03:41:06Z”,
“cancelled”: false,
]
Twitter API V3
[
{
…
“AccountId”: “18ce54jukpw”,
“Currency”: “USD”,
“type”: “PARTNER_MANAGED”,
“ReasonsNotAbleToFund”: [],
“created_at”: “2017-08-16T11:07:41Z”,
“start_time”: “2017-08-16T11:07:41Z”,
“end_time”: null,
“deleted”: false,
"paused": null,
“able_to_fund”: true,
…
“updated_at”: “2018-04-06T03:41:06Z”,
“cancelled”: null,
]