TMF931 Onboarding and Ordering
Enables Channel Partners and Marketplace providers to efficiently manage service onboarding and order execution
Introduction
The TMF 931 Onboarding and Ordering API enables Channel Partners and Marketplace providers to efficiently manage service onboarding and order execution through a flexible, operate-first interface.
Subscribe to the API
Due to the nature of the TMF 931 Onboarding and Ordering API, subscription cannot be completed through a self-service process like other APIs available on Orange Developer. Instead, please contact the Orange Developer team by using the "Contact us" button at the top of this page. When reaching out, kindly specify the reason for your request and how you intend to use this API. Our team will then guide you through the necessary steps to gain access.
API Authentication
HTTPS requests to the REST API are protected with 2-Legged OAuth. To learn more about how Orange Developer handles authentication, please refer to our documentation.
In short, you will use your Orange Developer Authorization header as authorization_header for the Basic authentication with Orange Developer.
curl -X POST \
-H "Authorization: {{ authorization_header }}" \
-d "grant_type=client_credentials" \
https://api.orange.com/oauth/v3/token
In response, you will get an access_token.
{
"token_type": "Bearer",
"access_token": "66AeYJF8eJQ...2SjkFg9LB1LePC",
"expires_in": 3600
}