Generate PDF
GEThttps://api.elfsquad.io/configurator/:version/configurator/:configurationId/pdf
Generate PDF
Request
Path Parameters
configurationId uuidrequired
Identifier of the configuration
version stringrequired
Query Parameters
templateId uuid
currencyIso string
languageIso string
attachment uuid[]
Responses
- 200
Success
Authorization: oauth2
name: oauth2type: oauth2scopes:openid,profile,email,offline_access,Elfskot.Api
flows: { "clientCredentials": { "tokenUrl": "https://login.elfsquad.io/oauth2/token", "scopes": { "Elfskot.Api": "Elfskot.Api" } }, "authorizationCode": { "authorizationUrl": "https://login.elfsquad.io/oauth2/authorize", "tokenUrl": "http://localhost:4444/oauth2/token", "scopes": { "openid": "openid", "profile": "profile", "email": "email", "offline_access": "offline_access", "Elfskot.Api": "Elfskot.Api" } } }
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.elfsquad.io/configurator/:version/configurator/:configurationId/pdf");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear