Skip to main content

Structure for Add Merchant Partner Requests

GET 

https://account-mgmt-system.sandbox.splitit.com/api/v1/partner-profiles/structure

Using your bearer token to authenticate, fetch the fields that you will need to complete an Add Merchant Partner request. (Note that these fields have been previously agreed upon between you and Splitit.) In addition, note that the response's RequestUrlEndpoint here includes the full URL (including profileID) that you will need to add new merchants using the Add Merchant Partner endpoint.

Request

Responses

Success

Response Headers

    Authorization: http

    name: bearerAuthtype: httpin: headerscheme: bearer
    var client = new HttpClient();
    var request = new HttpRequestMessage(HttpMethod.Get, "https://account-mgmt-system.sandbox.splitit.com/api/v1/partner-profiles/structure");
    request.Headers.Add("Accept", "application/json");
    request.Headers.Add("Authorization", "Bearer <TOKEN>");
    var response = await client.SendAsync(request);
    response.EnsureSuccessStatusCode();
    Console.WriteLine(await response.Content.ReadAsStringAsync());
    Request Collapse all
    Base URL
    https://account-mgmt-system.sandbox.splitit.com
    Auth
    ResponseClear

    Click the Send API Request button above and see the response here!